<?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: Create DEBMAS IDoc with BAPI informations in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-debmas-idoc-with-bapi-informations/m-p/3943071#M943118</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;How to Find Bapi for Particular Transaction in SAP &lt;/P&gt;&lt;P&gt;How to find function module or Bapi for particular transaction in sap? &lt;/P&gt;&lt;P&gt;If you mean that you need to know what BAPI's a particular tranx uses, which I can only assume that's what you mean, then you should access the code behind the transaction and search for 'CALL'. That normally is the standard method that think that most people use.  &lt;/P&gt;&lt;P&gt;Suppose you want to find the bapi for creating a sales order, you usually use transaction VA01 for this.  &lt;/P&gt;&lt;P&gt;1. Find out the package of the transaction.  &lt;/P&gt;&lt;P&gt;Start Va01 go to system --&amp;gt; status.  &lt;/P&gt;&lt;P&gt;Double click on transaction  &lt;/P&gt;&lt;P&gt;Package is VA  &lt;/P&gt;&lt;P&gt;Open this package in SE80  &lt;/P&gt;&lt;P&gt;Open business engineering--&amp;gt;Business object types  &lt;/P&gt;&lt;P&gt;Find the BO which sounds the most appropriate  &lt;/P&gt;&lt;P&gt;I would suggest BUS2032 Sales Order  &lt;/P&gt;&lt;P&gt;Double click.  &lt;/P&gt;&lt;P&gt;Open methods.  &lt;/P&gt;&lt;P&gt;Find the released method with from data or something similar in the name  &lt;/P&gt;&lt;P&gt;, Createfromdat2  &lt;/P&gt;&lt;P&gt;Position the cursor in it and click the program button  &lt;/P&gt;&lt;P&gt;Scroll down to find the bapi used in this method  &lt;/P&gt;&lt;P&gt;With this way you can also find out programs and FM's  &lt;/P&gt;&lt;P&gt;2. Start va01 go to system--&amp;gt;status  &lt;/P&gt;&lt;P&gt;Double click transaction VA01  &lt;/P&gt;&lt;P&gt;Double click on package  &lt;/P&gt;&lt;P&gt;Read the application component. (this is SD-SLS Sales)  &lt;/P&gt;&lt;P&gt;Then open the transaction BAPI  &lt;/P&gt;&lt;P&gt;Sales and distribution&lt;DEL&gt;&amp;gt;Sales&lt;/DEL&gt;&amp;gt;sales order  &lt;/P&gt;&lt;P&gt;createfromdat2  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In similar way you search bapi for customer creation transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;N M Poojari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 May 2008 14:19:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-27T14:19:54Z</dc:date>
    <item>
      <title>Create DEBMAS IDoc with BAPI informations</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-debmas-idoc-with-bapi-informations/m-p/3943070#M943117</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 use the BAPI BAPI_CUSTOMER_CREATEFROMDATA1 to create new customers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I want to save the parameter values of this BAPI in a Idoc if the return code is not equals 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know that for the BAPI to create a salesorder (BAPI_SALESORDER_CREATEFROMDAT2) exists a subroutine "IDOC_SALESORDER_CREATEFROMDAT2" to with the same parameters like the function module to save the informations as an Idoc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exist anything like this also for the customer creation bapi?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or how can I create an DEBMAS Idoc with the parameter informations ob the BAPI so easy as possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because at the moment I have implemented the creation of the Idoc manually.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2008 14:13:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-debmas-idoc-with-bapi-informations/m-p/3943070#M943117</guid>
      <dc:creator>christian_swonke</dc:creator>
      <dc:date>2008-05-27T14:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: Create DEBMAS IDoc with BAPI informations</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-debmas-idoc-with-bapi-informations/m-p/3943071#M943118</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;How to Find Bapi for Particular Transaction in SAP &lt;/P&gt;&lt;P&gt;How to find function module or Bapi for particular transaction in sap? &lt;/P&gt;&lt;P&gt;If you mean that you need to know what BAPI's a particular tranx uses, which I can only assume that's what you mean, then you should access the code behind the transaction and search for 'CALL'. That normally is the standard method that think that most people use.  &lt;/P&gt;&lt;P&gt;Suppose you want to find the bapi for creating a sales order, you usually use transaction VA01 for this.  &lt;/P&gt;&lt;P&gt;1. Find out the package of the transaction.  &lt;/P&gt;&lt;P&gt;Start Va01 go to system --&amp;gt; status.  &lt;/P&gt;&lt;P&gt;Double click on transaction  &lt;/P&gt;&lt;P&gt;Package is VA  &lt;/P&gt;&lt;P&gt;Open this package in SE80  &lt;/P&gt;&lt;P&gt;Open business engineering--&amp;gt;Business object types  &lt;/P&gt;&lt;P&gt;Find the BO which sounds the most appropriate  &lt;/P&gt;&lt;P&gt;I would suggest BUS2032 Sales Order  &lt;/P&gt;&lt;P&gt;Double click.  &lt;/P&gt;&lt;P&gt;Open methods.  &lt;/P&gt;&lt;P&gt;Find the released method with from data or something similar in the name  &lt;/P&gt;&lt;P&gt;, Createfromdat2  &lt;/P&gt;&lt;P&gt;Position the cursor in it and click the program button  &lt;/P&gt;&lt;P&gt;Scroll down to find the bapi used in this method  &lt;/P&gt;&lt;P&gt;With this way you can also find out programs and FM's  &lt;/P&gt;&lt;P&gt;2. Start va01 go to system--&amp;gt;status  &lt;/P&gt;&lt;P&gt;Double click transaction VA01  &lt;/P&gt;&lt;P&gt;Double click on package  &lt;/P&gt;&lt;P&gt;Read the application component. (this is SD-SLS Sales)  &lt;/P&gt;&lt;P&gt;Then open the transaction BAPI  &lt;/P&gt;&lt;P&gt;Sales and distribution&lt;DEL&gt;&amp;gt;Sales&lt;/DEL&gt;&amp;gt;sales order  &lt;/P&gt;&lt;P&gt;createfromdat2  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In similar way you search bapi for customer creation transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;N M Poojari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2008 14:19:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-debmas-idoc-with-bapi-informations/m-p/3943071#M943118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-27T14:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: Create DEBMAS IDoc with BAPI informations</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-debmas-idoc-with-bapi-informations/m-p/3943072#M943119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, sorry that was not my question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know how I can find BAPIs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to know if there is a similar subroutine or function module to create an DEBMAS like the bapi BAPI_CUSTOMER_CREATEFROMDATA1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This means with the same parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because If I try to create an customer with the bapi BAPI_CUSTOMER_CREATEFROMDATA1 and receive an error, I want to store the informations and also the return values of the bapi in an DEBMAS Idoc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The BAPI BAPI_SALESORDER_CREATEFROMDAT2 has a subroutine with the same parameters which can create an Idoc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2008 14:28:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-debmas-idoc-with-bapi-informations/m-p/3943072#M943119</guid>
      <dc:creator>christian_swonke</dc:creator>
      <dc:date>2008-05-27T14:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: Create DEBMAS IDoc with BAPI informations</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-debmas-idoc-with-bapi-informations/m-p/3943073#M943120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Christian,&lt;/P&gt;&lt;P&gt;I'm afraid that nothing like that do exists.&lt;/P&gt;&lt;P&gt;I would even insist to not uses BAPI_CUSTOMER_CREATEFROMDATA1.&lt;/P&gt;&lt;P&gt;This is simply due to the fact that BAPI has been developped exclusively for SAP Online Store. As a result, standard creation and maintenance of customer through this BAPI will lead to troubles in the future.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is NO BAPI nor direct function module to maintain Customer master data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To creates DEBMAS from your coding !!&lt;/P&gt;&lt;P&gt;I would suggest that you send you BAPI parameters to a file and process that file using LSMW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively look at RFBIDE00, but this will not help too much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, don't forget that customer master is related to adress idocs like ADR*MAS. &lt;/P&gt;&lt;P&gt;DEBMAS is really not enough is you plan to distribute customers with accurate address informations&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 16:27:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-debmas-idoc-with-bapi-informations/m-p/3943073#M943120</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T16:27:19Z</dc:date>
    </item>
  </channel>
</rss>

