<?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 Processes in Inbound IDoc posting in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/processes-in-inbound-idoc-posting/m-p/4241400#M1012378</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm new with IDocs, and I have an object which requires Inbound IDoc posting..&lt;/P&gt;&lt;P&gt;Can you give me the possible steps/processes including the tcodes on how can I solve this object?&lt;/P&gt;&lt;P&gt;Please also include FMs that I might possibly used during my development.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I highly appreciate all your swift responses. Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Aug 2008 01:44:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-13T01:44:48Z</dc:date>
    <item>
      <title>Processes in Inbound IDoc posting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processes-in-inbound-idoc-posting/m-p/4241400#M1012378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm new with IDocs, and I have an object which requires Inbound IDoc posting..&lt;/P&gt;&lt;P&gt;Can you give me the possible steps/processes including the tcodes on how can I solve this object?&lt;/P&gt;&lt;P&gt;Please also include FMs that I might possibly used during my development.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I highly appreciate all your swift responses. Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 01:44:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processes-in-inbound-idoc-posting/m-p/4241400#M1012378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T01:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: Processes in Inbound IDoc posting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processes-in-inbound-idoc-posting/m-p/4241401#M1012379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Based on the application the Idoc posting differs and FM associated to the relevant IDOC should be used.&lt;/P&gt;&lt;P&gt;for ex: IDOC_INPUT_INVOIC_CREATE for MM Invoice posting and IDOC_INPUT_INVOIC_FI for posting FI Invoice, etc....&lt;/P&gt;&lt;P&gt;It would be possible to answer your qn. if we know the application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as IDOCs are concerned, let us know what info. do u need?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 03:00:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processes-in-inbound-idoc-posting/m-p/4241401#M1012379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T03:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: Processes in Inbound IDoc posting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processes-in-inbound-idoc-posting/m-p/4241402#M1012380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi TSReddy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry if I forgot to include that detail... It's FI invoice..&lt;/P&gt;&lt;P&gt;Thank you for the input..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 03:27:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processes-in-inbound-idoc-posting/m-p/4241402#M1012380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T03:27:05Z</dc:date>
    </item>
    <item>
      <title>Re: Processes in Inbound IDoc posting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processes-in-inbound-idoc-posting/m-p/4241403#M1012381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use FM IDOC_INBOUND_WRITE_TO_DB to create an inbound IDoc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'IDOC_INBOUND_WRITE_TO_DB'
    EXPORTING
      PI_STATUS_MESSAGE       = I_EDIDS
    IMPORTING
      PE_IDOC_NUMBER          = DOCNUM
      PE_STATE_OF_PROCESSING  = STPROC
      PE_INBOUND_PROCESS_DATA = I_TEDE2
    TABLES
      T_DATA_RECORDS          = I_EDIDD
    CHANGING
      PC_CONTROL_RECORD       = I_EDIDC
    EXCEPTIONS
      IDOC_NOT_SAVED          = 1
      OTHERS                  = 2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandra Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 03:30:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processes-in-inbound-idoc-posting/m-p/4241403#M1012381</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T03:30:06Z</dc:date>
    </item>
  </channel>
</rss>

