<?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 example of  BAPI_CUSTOMER_CREATEFROMDATA1 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/example-of-bapi-customer-createfromdata1/m-p/1249408#M144558</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;anyone have an example of this bapi?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Mar 2006 11:52:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-27T11:52:58Z</dc:date>
    <item>
      <title>example of  BAPI_CUSTOMER_CREATEFROMDATA1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/example-of-bapi-customer-createfromdata1/m-p/1249408#M144558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;anyone have an example of this bapi?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2006 11:52:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/example-of-bapi-customer-createfromdata1/m-p/1249408#M144558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-27T11:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: example of  BAPI_CUSTOMER_CREATEFROMDATA1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/example-of-bapi-customer-createfromdata1/m-p/1249409#M144559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;pass the required info to BAPI, and for further help read the documentation. &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; call function 'BAPI_CUSTOMER_CREATEFROMDATA1'
       exporting
            pi_personaldata        = wk_personaldata
            pi_opt_personaldata    = wk_opt_personaldata
            PI_COMPANYDATA         =  wk_companydata
            PI_OPT_COMPANYDATA     =  wk_opt_companydata
            pi_copyreference       = wk_copyreference
      importing
           customerno             = wk_customerno
           return                 = wk_return&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2006 11:59:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/example-of-bapi-customer-createfromdata1/m-p/1249409#M144559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-27T11:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: example of  BAPI_CUSTOMER_CREATEFROMDATA1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/example-of-bapi-customer-createfromdata1/m-p/1249410#M144560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i know that i looking for the value that i need and must &lt;/P&gt;&lt;P&gt;to put in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i get message num 838 invalid form addres tax??&lt;/P&gt;&lt;P&gt;what is missing&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2006 12:09:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/example-of-bapi-customer-createfromdata1/m-p/1249410#M144560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-27T12:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: example of  BAPI_CUSTOMER_CREATEFROMDATA1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/example-of-bapi-customer-createfromdata1/m-p/1249411#M144561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the table TSAD3T for TITLE_MEDI gives some valid values,.&lt;/P&gt;&lt;P&gt;If you don't have any valid entries in that table, you will get this mesage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually in that Function module,&lt;/P&gt;&lt;P&gt;this part of the code triggers that message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;        SELECT SINGLE * FROM TSAD3T WHERE TITLE_MEDI&lt;/P&gt;&lt;P&gt;                                               = I_BAPIKNA106-TITLE.&lt;/P&gt;&lt;P&gt;        IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;          PE_RETURN1-TYPE = 'E'.&lt;/P&gt;&lt;P&gt;          SY-MSGID = C_MSG_ID.&lt;/P&gt;&lt;P&gt;          SY-MSGNO = '838'.&lt;/P&gt;&lt;P&gt;          SY-MSGV1 = SPACE.&lt;/P&gt;&lt;P&gt;          SY-MSGV2 = SPACE.&lt;/P&gt;&lt;P&gt;          SY-MSGV3 = SPACE.&lt;/P&gt;&lt;P&gt;          SY-MSGV4 = SPACE.&lt;/P&gt;&lt;P&gt;        ENDIF.&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2006 12:12:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/example-of-bapi-customer-createfromdata1/m-p/1249411#M144561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-27T12:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: example of  BAPI_CUSTOMER_CREATEFROMDATA1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/example-of-bapi-customer-createfromdata1/m-p/1249412#M144562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I HAVE DATA IN THIS TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'M ASKING WHAT IS THE FIELD THAT I MUST FILL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IS THERE EXAMPLE?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2006 12:24:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/example-of-bapi-customer-createfromdata1/m-p/1249412#M144562</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-27T12:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: example of  BAPI_CUSTOMER_CREATEFROMDATA1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/example-of-bapi-customer-createfromdata1/m-p/1249413#M144563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi yehiel,&lt;/P&gt;&lt;P&gt;  I think you should give the form_of)_address field a value from one of the following:&lt;/P&gt;&lt;P&gt;Ms.     &lt;/P&gt;&lt;P&gt;Mr.     &lt;/P&gt;&lt;P&gt;Company &lt;/P&gt;&lt;P&gt; Probably you should pass to TITLE_KEY field of PI_PERSONALDATA structure.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2006 12:36:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/example-of-bapi-customer-createfromdata1/m-p/1249413#M144563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-27T12:36:39Z</dc:date>
    </item>
  </channel>
</rss>

