<?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 creation - Different Message types in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-creation-different-message-types/m-p/5602966#M1276879</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have lot of custom development and we have to go with an ABAP program to create these Idocs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's what I am planning to do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fill DEBMAS05 idoc type.&lt;/P&gt;&lt;P&gt;append EDIDD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fill ORDERS05 idoc type.&lt;/P&gt;&lt;P&gt;append EDIDD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm planning to use INBOUND IDOC Process function module to create these idocs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For performance reasons do you want me to call this FM twice or only once for both ( by appending EDIDD both debmas and orders records ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Meghna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 May 2009 15:31:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-14T15:31:04Z</dc:date>
    <item>
      <title>Idoc creation - Different Message types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-creation-different-message-types/m-p/5602962#M1276875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there an efficient way of  to create both DEBMAS and ORDERS message type idocs within the same same ABAP program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Meghna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 05:21:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-creation-different-message-types/m-p/5602962#M1276875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-14T05:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: Idoc creation - Different Message types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-creation-different-message-types/m-p/5602963#M1276876</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;Can you be more clear abt the requirement like why you need to create both DEBMAS and ORDERS message type idocs within the same same ABAP program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;programatically yes its possible,based on message type you can fill the respective  idoc types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If EDIDC-MESTYP = 'DEBMAS'.&lt;/P&gt;&lt;P&gt; fill DEBMAS05 idoc type.&lt;/P&gt;&lt;P&gt;else if EDIDC-MESTYP = 'ORDERS'.&lt;/P&gt;&lt;P&gt;  fill ORDERS05 idoc type&lt;/P&gt;&lt;P&gt;endif.&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>Thu, 14 May 2009 05:32:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-creation-different-message-types/m-p/5602963#M1276876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-14T05:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: Idoc creation - Different Message types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-creation-different-message-types/m-p/5602964#M1276877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Naveen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is to create both.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's what I am planning to do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fill DEBMAS05 idoc type.&lt;/P&gt;&lt;P&gt;append EDIDD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fill ORDERS05 idoc type.&lt;/P&gt;&lt;P&gt;append EDIDD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm planning to use INBOUND IDOC Process function module to create these idocs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For performance reasons do you want me to call this FM twice or only once for both.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Meghna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 15:19:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-creation-different-message-types/m-p/5602964#M1276877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-14T15:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: Idoc creation - Different Message types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-creation-different-message-types/m-p/5602965#M1276878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Meghna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is a option you can assign the DEBMAS05,ORDERS05 idoc type for the Partner profile..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so when ever the data come for a particular partner the both DEBMAS05,ORDERS05 will be created..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 15:24:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-creation-different-message-types/m-p/5602965#M1276878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-14T15:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: Idoc creation - Different Message types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-creation-different-message-types/m-p/5602966#M1276879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have lot of custom development and we have to go with an ABAP program to create these Idocs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's what I am planning to do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fill DEBMAS05 idoc type.&lt;/P&gt;&lt;P&gt;append EDIDD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fill ORDERS05 idoc type.&lt;/P&gt;&lt;P&gt;append EDIDD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm planning to use INBOUND IDOC Process function module to create these idocs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For performance reasons do you want me to call this FM twice or only once for both ( by appending EDIDD both debmas and orders records ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Meghna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 15:31:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-creation-different-message-types/m-p/5602966#M1276879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-14T15:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: Idoc creation - Different Message types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-creation-different-message-types/m-p/5602967#M1276880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;As both are diffrenet message types ( incase inbound idoc) , the FM's will be different and so u have to call both FM's twice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it is outbound idoc , then after filling EDIDD for DEBMAS pass it to MASTER_IDOC_DISTRIBUTE fm .&lt;/P&gt;&lt;P&gt;//ly after filling EDIDD for  ORDERS pass it to MASTER_IDOC_DISTRIBUTE fm .&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, 15 May 2009 04:23:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-creation-different-message-types/m-p/5602967#M1276880</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-15T04:23:02Z</dc:date>
    </item>
  </channel>
</rss>

