<?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: BAPI or FM for VAP1 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-or-fm-for-vap1/m-p/3762759#M905266</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;look into these, it may help u&lt;/P&gt;&lt;P&gt;CUSTOMER_CREATE_EX_VENDOR&lt;/P&gt;&lt;P&gt;CUSTOMER_CREATE_EX_VENDOR_check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think these function module relate customer creation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;chandu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Apr 2008 11:51:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-22T11:51:56Z</dc:date>
    <item>
      <title>BAPI or FM for VAP1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-or-fm-for-vap1/m-p/3762756#M905263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does anyone know a BAPI or an FM which has the same functionality as VAP1?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 11:40:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-or-fm-for-vap1/m-p/3762756#M905263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T11:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI or FM for VAP1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-or-fm-for-vap1/m-p/3762757#M905264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can use following BAPI to create contact person&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI_BUPA_CREATE_FROM_DATA&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_BUPR_CONTP_CHANGE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;BUSINESSPARTNER = number&lt;/P&gt;&lt;P&gt;CONTACTPERSON = contact_number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VALIDFROMDATE = '00010101' &lt;/P&gt;&lt;P&gt;VALIDUNTILDATE = '99991231' &lt;/P&gt;&lt;P&gt;CENTRALDATA = central_data_relation&lt;/P&gt;&lt;P&gt;CENTRALDATA_X = central_data_relation_x&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;RETURN = return_relation&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;IF sy-subrc 0.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;wait = 'X'.&lt;/P&gt;&lt;P&gt;ENDIF.[/code]https://forums.sdn.sap.com/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; to insert data:&lt;/P&gt;&lt;P&gt;The BAPI to use is BAPI_BUPR_CONTP_CREATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;shiva.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 11:48:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-or-fm-for-vap1/m-p/3762757#M905264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T11:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI or FM for VAP1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-or-fm-for-vap1/m-p/3762758#M905265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  See the BAPI BAPI_CUSTOMER_CHANGEFROMDATA1 / BAPI_CUSTOMER_CHANGEFROMDATA. &lt;/P&gt;&lt;P&gt;You can pass Contact Information of a customer there.&lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;Function Module SD_CUSTOMER_MAINTAIN_ALL . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For that you may need to pass &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POSTFLAG = 'X'.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SD_CUSTOMER_MAINTAIN_ALL'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;I_KNA1 = I_KNA1&lt;/P&gt;&lt;P&gt;PI_POSTFLAG = POSTFLAG&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;T_XKNVK = T_XKNVK&lt;/P&gt;&lt;P&gt;T_XKNVP = T_XKNVP&lt;/P&gt;&lt;P&gt;T_YKNVK = T_YKNVK&lt;/P&gt;&lt;P&gt;T_YKNVP = T_YKNVP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kiran Sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 11:51:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-or-fm-for-vap1/m-p/3762758#M905265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T11:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI or FM for VAP1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-or-fm-for-vap1/m-p/3762759#M905266</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;look into these, it may help u&lt;/P&gt;&lt;P&gt;CUSTOMER_CREATE_EX_VENDOR&lt;/P&gt;&lt;P&gt;CUSTOMER_CREATE_EX_VENDOR_check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think these function module relate customer creation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;chandu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 11:51:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-or-fm-for-vap1/m-p/3762759#M905266</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T11:51:56Z</dc:date>
    </item>
  </channel>
</rss>

