<?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 Re: idoc inbound processing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-processing/m-p/1378658#M185239</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is the custom IDoc feeding only Z tables or you want to fill some Z tables while creating a delivery using standard IDocs? If you are using standard IDoc, then why not use some user exits to update the z tables?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Double click on the quilifier fields and go all the way to the domain and look at the values and you will understand the reason for the qualifier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the delivery, let us say you want to have material number. Now the same material can have different identifications depending on whether the value represents customer material number, manufacturer's part number, etc. Similarly, you may be creating the delivery with reference to several other documents. Then you can have a reference document qualifier called sales order and the value will represent the sales order number for which the delivery is created. Similarly it can be a PO or some other reference document. In short, qualifiers qualify the value of any particular attribute of the IDoc object.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Jul 2006 18:26:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-07T18:26:11Z</dc:date>
    <item>
      <title>idoc inbound processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-processing/m-p/1378656#M185237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement to create a custom FM to update ztables using the data from idocs. Can anyone help me with a sample code for creating a Z_IDOC_INPUT_DELVRY FM.&lt;/P&gt;&lt;P&gt;I would also like to know what is the use of segment fields like E1EDL41-QUALF, E1EDL43-QUALI and if they need to be stored along with other data like delivery number,item number, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;A.P.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 18:17:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-processing/m-p/1378656#M185237</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T18:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: idoc inbound processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-processing/m-p/1378657#M185238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;check below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are basically two types of IDOCs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basic IDOCs &lt;/P&gt;&lt;P&gt;Extended IDOCs &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Idoc Components &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basic Idoc &lt;/P&gt;&lt;P&gt;Basic IDOC type defines the structure and format of the business document that is to be exchanged between two systems. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Extension Idoc &lt;/P&gt;&lt;P&gt;Extending the functionality by adding more segments to existing Basic IDOCs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Creation of IDoc &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To Create Idoc we need to follow these steps: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create Segment ( WE31) &lt;/P&gt;&lt;P&gt;Create Idoc Type ( WE30) &lt;/P&gt;&lt;P&gt;Create Message Type ( WE81) &lt;/P&gt;&lt;P&gt;Assign Idoc Type to Message Type ( WE82) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Creating a Segment &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to transaction code WE31 &lt;/P&gt;&lt;P&gt;Enter the name for your segment type and click on the Create icon &lt;/P&gt;&lt;P&gt;Type the short text &lt;/P&gt;&lt;P&gt;Enter the variable names and data elements &lt;/P&gt;&lt;P&gt;Save it and go back &lt;/P&gt;&lt;P&gt;Go to Edit -&amp;gt; Set Release &lt;/P&gt;&lt;P&gt;Follow steps to create more number of segments &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create IDOC Type &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to transaction code WE30 &lt;/P&gt;&lt;P&gt;Enter the Object Name, select Basic type and click Create icon &lt;/P&gt;&lt;P&gt;Select the create new option and enter a description for your basic IDOC type and press enter &lt;/P&gt;&lt;P&gt;Select the IDOC Name and click Create icon &lt;/P&gt;&lt;P&gt;The system prompts us to enter a segment type and its attributes &lt;/P&gt;&lt;P&gt;Choose the appropriate values and press Enter &lt;/P&gt;&lt;P&gt;The system transfers the name of the segment type to the IDOC editor. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create IDOC Type &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Follow these steps to add more number of segments to Parent or as Parent-child relation &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save it and go back &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to Edit -&amp;gt; Set release &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create Message Type &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to transaction code WE81 &lt;/P&gt;&lt;P&gt;Change the details from Display mode to Change mode &lt;/P&gt;&lt;P&gt;After selection, the system will give this message &amp;#147;The table is cross-client (see Help for further info)&amp;#148;. Press Enter &lt;/P&gt;&lt;P&gt;Click New Entries to create new Message Type &lt;/P&gt;&lt;P&gt;Fill details &lt;/P&gt;&lt;P&gt;Save it and go back &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assign Message Type to IDoc Type &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to transaction code WE82 &lt;/P&gt;&lt;P&gt;Change the details from Display mode to Change mode &lt;/P&gt;&lt;P&gt;After selection, the system will give this message &amp;#147;The table is cross-client (see Help for further info)&amp;#148;. Press Enter. &lt;/P&gt;&lt;P&gt;Click New Entries to create new Message Type. &lt;/P&gt;&lt;P&gt;Fill details &lt;/P&gt;&lt;P&gt;Save it and go back &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think itwould be helpful for you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 18:21:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-processing/m-p/1378657#M185238</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T18:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: idoc inbound processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-processing/m-p/1378658#M185239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is the custom IDoc feeding only Z tables or you want to fill some Z tables while creating a delivery using standard IDocs? If you are using standard IDoc, then why not use some user exits to update the z tables?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Double click on the quilifier fields and go all the way to the domain and look at the values and you will understand the reason for the qualifier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the delivery, let us say you want to have material number. Now the same material can have different identifications depending on whether the value represents customer material number, manufacturer's part number, etc. Similarly, you may be creating the delivery with reference to several other documents. Then you can have a reference document qualifier called sales order and the value will represent the sales order number for which the delivery is created. Similarly it can be a PO or some other reference document. In short, qualifiers qualify the value of any particular attribute of the IDoc object.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 18:26:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-processing/m-p/1378658#M185239</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T18:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: idoc inbound processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-processing/m-p/1378659#M185240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Srinivas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the quick reply. The inbound idoc I'm using is basic type DELVRY01 and message type WHSORD. It will be used to update only ztables as it is used only for an internal purpose. So how do I find the correct user exit to write the code to update the ztables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.P.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 19:17:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-processing/m-p/1378659#M185240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T19:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: idoc inbound processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-processing/m-p/1378660#M185241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the input Naveen!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 19:18:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-processing/m-p/1378660#M185241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T19:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: idoc inbound processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-processing/m-p/1378661#M185242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In IDOC_INPUT_DELVRY, there is a call to user exit 003. In there, you have access to both the IDOC data(IDOC_DATA) as well as the delivery data(DELIF_T_VBPOK).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at them and move the values that you need, to the Z table fields and update the tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 19:25:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-processing/m-p/1378661#M185242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T19:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: idoc inbound processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-processing/m-p/1378662#M185243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please give more information as to what segments and what fields have the values that you are interested in to fill the Z table entries. Typically, you can loop at the idoc data and have a case statement for segnam field. This field has the name of the segment that is currently read in the loop. You can then move the sdata value of the current record to a structure of type segnam. After that you can read the individual fields of that structure/segment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at the code of 'delvry_idoc_parse' routine in there and you will understand. You can even do this user exit 001 which is called from within loop of this routine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 19:29:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-processing/m-p/1378662#M185243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T19:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: idoc inbound processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-processing/m-p/1378663#M185244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Srini&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You're awesome. You made it a lot clearer to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;A.P.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 20:01:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-processing/m-p/1378663#M185244</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T20:01:30Z</dc:date>
    </item>
    <item>
      <title>Re: idoc inbound processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-processing/m-p/1378664#M185245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad to be of help. Please let me know if you encounter any further hurdles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 20:15:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-inbound-processing/m-p/1378664#M185245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T20:15:53Z</dc:date>
    </item>
  </channel>
</rss>

