<?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: creating a custom IDoc inbound function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-custom-idoc-inbound-function-module/m-p/3920342#M939364</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use SE37 to write an own function module. Check out some standard IDoc processing ones for reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then attach this FM to the relevant IDoc with transaction WE42.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Jun 2008 10:02:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-02T10:02:28Z</dc:date>
    <item>
      <title>creating a custom IDoc inbound function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-custom-idoc-inbound-function-module/m-p/3920341#M939363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created a custom idoc.I wanted to create a custom IDoc inbound function module, this Function module will provide to launch a BAPI .Tell me how to "create" inbound function module for the custom idoc ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jun 2008 10:00:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-custom-idoc-inbound-function-module/m-p/3920341#M939363</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-02T10:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: creating a custom IDoc inbound function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-custom-idoc-inbound-function-module/m-p/3920342#M939364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use SE37 to write an own function module. Check out some standard IDoc processing ones for reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then attach this FM to the relevant IDoc with transaction WE42.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jun 2008 10:02:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-custom-idoc-inbound-function-module/m-p/3920342#M939364</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-02T10:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: creating a custom IDoc inbound function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-custom-idoc-inbound-function-module/m-p/3920343#M939365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Goto any standard for the Paramtetres&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*"  IMPORTING&lt;/P&gt;&lt;P&gt;*"     REFERENCE(INPUT_METHOD) LIKE  BDWFAP_PAR-INPUTMETHD&lt;/P&gt;&lt;P&gt;*"     REFERENCE(MASS_PROCESSING) LIKE  BDWFAP_PAR-MASS_PROC&lt;/P&gt;&lt;P&gt;*"  EXPORTING&lt;/P&gt;&lt;P&gt;*"     REFERENCE(WORKFLOW_RESULT) LIKE  BDWFAP_PAR-RESULT&lt;/P&gt;&lt;P&gt;*"     REFERENCE(APPLICATION_VARIABLE) LIKE  BDWFAP_PAR-APPL_VAR&lt;/P&gt;&lt;P&gt;*"     REFERENCE(IN_UPDATE_TASK) LIKE  BDWFAP_PAR-UPDATETASK&lt;/P&gt;&lt;P&gt;*"     REFERENCE(CALL_TRANSACTION_DONE) LIKE  BDWFAP_PAR-CALLTRANS&lt;/P&gt;&lt;P&gt;*"     REFERENCE(DOCUMENT_NUMBER) LIKE  VBAK-VBELN&lt;/P&gt;&lt;P&gt;*"  TABLES&lt;/P&gt;&lt;P&gt;*"      IDOC_CONTRL STRUCTURE  EDIDC&lt;/P&gt;&lt;P&gt;*"      IDOC_DATA STRUCTURE  EDIDD&lt;/P&gt;&lt;P&gt;*"      IDOC_STATUS STRUCTURE  BDIDOCSTAT&lt;/P&gt;&lt;P&gt;*"      RETURN_VARIABLES STRUCTURE  BDWFRETVAR&lt;/P&gt;&lt;P&gt;*"      SERIALIZATION_INFO STRUCTURE  BDI_SER&lt;/P&gt;&lt;P&gt;*"      EDI_TEXT STRUCTURE  EDIORDTXT1 OPTIONAL&lt;/P&gt;&lt;P&gt;*"      EDI_TEXT_LINES STRUCTURE  EDIORDTXT2 OPTIONAL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do the below configs.&lt;/P&gt;&lt;P&gt;1.Recognise the funcmod as Inbound -BD51&lt;/P&gt;&lt;P&gt;2.Register the Function  module in WE57 .&lt;/P&gt;&lt;P&gt;3.we42 Process code .&lt;/P&gt;&lt;P&gt;4. WE20 -PARTNER Profile &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it resolves ur Query.&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Sree M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jun 2008 10:26:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-custom-idoc-inbound-function-module/m-p/3920343#M939365</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-02T10:26:00Z</dc:date>
    </item>
  </channel>
</rss>

