<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic ISO code in Inbound Order in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/iso-code-in-inbound-order/m-p/1512214#M236117</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am testing the inbound idoc orders05. Customer's PO has 'UN' in the field MENEE of E1EDP01. It is equivalent to EA.&lt;/P&gt;&lt;P&gt;When I try to post it , it gives me an error "ISO unit of measure UN is not assigned (item )"&lt;/P&gt;&lt;P&gt;I tried to maintain it in the UOM table but it didn't allow me to do so as an entry with EA already exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I changed dxvbap-vrkme and dxvbap-meins to EA through user exit but it is still giving me the same ISO error.&lt;/P&gt;&lt;P&gt;I am using the exit 'exit_saplveda_001'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cnn you tell me what I am doing wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Aug 2006 16:29:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-31T16:29:24Z</dc:date>
    <item>
      <title>ISO code in Inbound Order</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iso-code-in-inbound-order/m-p/1512214#M236117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am testing the inbound idoc orders05. Customer's PO has 'UN' in the field MENEE of E1EDP01. It is equivalent to EA.&lt;/P&gt;&lt;P&gt;When I try to post it , it gives me an error "ISO unit of measure UN is not assigned (item )"&lt;/P&gt;&lt;P&gt;I tried to maintain it in the UOM table but it didn't allow me to do so as an entry with EA already exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I changed dxvbap-vrkme and dxvbap-meins to EA through user exit but it is still giving me the same ISO error.&lt;/P&gt;&lt;P&gt;I am using the exit 'exit_saplveda_001'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cnn you tell me what I am doing wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 16:29:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iso-code-in-inbound-order/m-p/1512214#M236117</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T16:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: ISO code in Inbound Order</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iso-code-in-inbound-order/m-p/1512215#M236118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shahnila,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please use this FM &amp;lt;b&amp;gt;UNIT_OF_MEASURE_SAP_TO_ISO&amp;lt;/b&amp;gt; to convert to ISO code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'UNIT_OF_MEASURE_SAP_TO_ISO'
    EXPORTING
      SAP_CODE    = I_LIPS-VRKME
    IMPORTING
      ISO_CODE    = I_LIPS-VRKME
    EXCEPTIONS
      NOT_FOUND   = 1
      NO_ISO_CODE = 2
      OTHERS      = 3.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 16:50:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iso-code-in-inbound-order/m-p/1512215#M236118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T16:50:57Z</dc:date>
    </item>
    <item>
      <title>Re: ISO code in Inbound Order</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iso-code-in-inbound-order/m-p/1512216#M236119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used the FM in the userexit but the error is still there. Here is my code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check contrl-mestyp = 'ORDERS'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if segment-segnam = 'E1EDP01'.&lt;/P&gt;&lt;P&gt; move segment-sdata to l_edp01.&lt;/P&gt;&lt;P&gt;  if l_edp01-menee = 'UN'.&lt;/P&gt;&lt;P&gt;     xvbap = dxvbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     xvbap-vrkme = 'EA'.&lt;/P&gt;&lt;P&gt;     call function 'UNIT_OF_MEASURE_SAP_TO_ISO'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      sap_code    = xvbap-vrkme&lt;/P&gt;&lt;P&gt;    importing&lt;/P&gt;&lt;P&gt;      iso_code    = xvbap-vrkme&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      not_found   = 1&lt;/P&gt;&lt;P&gt;      no_iso_code = 2&lt;/P&gt;&lt;P&gt;      others      = 3.&lt;/P&gt;&lt;P&gt;     xvbap-meins = xvbap-vrkme.&lt;/P&gt;&lt;P&gt;     dxvbap = xvbap.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 18:05:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iso-code-in-inbound-order/m-p/1512216#M236119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T18:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: ISO code in Inbound Order</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iso-code-in-inbound-order/m-p/1512217#M236120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shahnila,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I check the FM stand alone and it works fine by returning 'EA' when i pass 'EA' . can you keep a beakpoint before function module and run step by step to check why you are getting error ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 18:13:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iso-code-in-inbound-order/m-p/1512217#M236120</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T18:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: ISO code in Inbound Order</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iso-code-in-inbound-order/m-p/1512218#M236121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In transaction CUNI, click on unit of measurement, select EA in the next screen and then press 'Display' icon. See what is there in the ISO code field. My guess is that it is EA. UN is not a valid ISO code. So you have to change E1EDP01-MENEE to EA. That should take care of it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 18:17:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iso-code-in-inbound-order/m-p/1512218#M236121</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T18:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: ISO code in Inbound Order</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iso-code-in-inbound-order/m-p/1512219#M236122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am changing XVBAP-vrkme through user exit. I don't know how to change the idoc segment itself for the incoming order. Can you tell me te user exit for this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 18:23:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iso-code-in-inbound-order/m-p/1512219#M236122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T18:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: ISO code in Inbound Order</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iso-code-in-inbound-order/m-p/1512220#M236123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which function module are you using? Is it IDOC_INPUT_ORDERS? Unfortunately, all the user exits are called after the error happens. There are none before. Your error is basically coming from here.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IDOC_INPUT_ORDERS
--&amp;gt;PERFORM interpret_idoc_orders
   --&amp;gt;PERFORM ZUORDNEN_ORDERS_E1EDP01.
      --&amp;gt;PERFORM IDOC_ISO_MEASURE_MOVE USING E1EDP01-MENEE XVBAP-VRKME
                              D_FLAG_K-UER2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To avoid the error message, either you have to configure the ISO code UN in your system and assign that to EA using the CUNI transaction or your EDI subsystem must do the translation before converting the EDI message into IDoc. Adding the ISO unit and assigning it to EA is a complicated one (not the doing part of it but the implications part of it). So I suggest that you talk to the EDI subsystem people and ask them to change UN to EA in their mapping.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 18:45:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iso-code-in-inbound-order/m-p/1512220#M236123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T18:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: ISO code in Inbound Order</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iso-code-in-inbound-order/m-p/1512221#M236124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. I'll make changes in the EDI subsystem mapping.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 19:10:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iso-code-in-inbound-order/m-p/1512221#M236124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T19:10:00Z</dc:date>
    </item>
  </channel>
</rss>

