<?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: Vendor Create using call transaction in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/vendor-create-using-call-transaction/m-p/6062545#M1354227</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, I read about this function but it is mainly not recommended to be used since it operates directly on the database. Maybe I will try it if the call transaction scenario does not work for me!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Konrad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Sep 2009 14:01:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-09-22T14:01:23Z</dc:date>
    <item>
      <title>Vendor Create using call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vendor-create-using-call-transaction/m-p/6062540#M1354222</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;Since there is no BAPI to create a Vendor (XK01) without GUI (BAPI_VENDOR_CREATE uses call transaction and brings up a GUI), I wanted to try call transaction to create a vendor without GUI. The problem now is, that the screen shown by the Batch-Input Recorder for XK01 is different from the screen using XK01 directly. So far, I recognized, that the filed for "house number" is missing. Can anybody help me here? Goal is to create a vendor without GUI from an external system using a RFC connection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Konrad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2009 11:58:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vendor-create-using-call-transaction/m-p/6062540#M1354222</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-26T11:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: Vendor Create using call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vendor-create-using-call-transaction/m-p/6062541#M1354223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Konrad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can use the Enterprise Service SupplierERPCreateRequest_In.&lt;/P&gt;&lt;P&gt;You will need EhP 4 do do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2009 13:34:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vendor-create-using-call-transaction/m-p/6062541#M1354223</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-22T13:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: Vendor Create using call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vendor-create-using-call-transaction/m-p/6062542#M1354224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make sure that the switch for "central address management" is switched on in the initial screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;perform dynpro
      tables bdcdata
      using:
     'X' 'SAPMF02K'     '0105',         "Create Vendor: Initial Screen
      ' ' 'USE_ZAV'                 'X'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2009 13:49:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vendor-create-using-call-transaction/m-p/6062542#M1354224</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-22T13:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: Vendor Create using call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vendor-create-using-call-transaction/m-p/6062543#M1354225</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;&lt;/P&gt;&lt;P&gt;U can try this BAPI..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

call function 'VENDOR_INSERT'
  exporting
    i_lfa1        = 
    i_lfb1        = 
    i_lfm1        =
  tables
    t_xlfas        = 
    t_xlfb5        = 
    t_xlfbk        =
    t_xlfza        = .

call function 'BAPI_TRANSACTION_COMMIT'.

&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;Surya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2009 13:49:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vendor-create-using-call-transaction/m-p/6062543#M1354225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-22T13:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: Vendor Create using call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vendor-create-using-call-transaction/m-p/6062544#M1354226</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;Could you please give me a little more information about this. Right now, I'm using call transaction together with a bdcdata-table to insert my values but I have now idea what your perform dynpro call would be and how I can use it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Konrad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2009 13:59:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vendor-create-using-call-transaction/m-p/6062544#M1354226</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-22T13:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: Vendor Create using call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vendor-create-using-call-transaction/m-p/6062545#M1354227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, I read about this function but it is mainly not recommended to be used since it operates directly on the database. Maybe I will try it if the call transaction scenario does not work for me!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Konrad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2009 14:01:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vendor-create-using-call-transaction/m-p/6062545#M1354227</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-22T14:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: Vendor Create using call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vendor-create-using-call-transaction/m-p/6062546#M1354228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While you are recording the transaction XK01 using SHDB, in the initial screen of XK01, you will have a check box named 'Central Address Management' at the bottom. Click that checkbox and start recording. Thats what Rob mentioned.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2009 14:03:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vendor-create-using-call-transaction/m-p/6062546#M1354228</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-22T14:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: Vendor Create using call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vendor-create-using-call-transaction/m-p/6062547#M1354229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow, I haven't noticed this little checkbox but it does the trick!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks to all of you...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Konrad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2009 14:10:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vendor-create-using-call-transaction/m-p/6062547#M1354229</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-22T14:10:32Z</dc:date>
    </item>
  </channel>
</rss>

