<?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 to load customer master using bapi in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-load-customer-master-using-bapi/m-p/4205343#M1005032</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI GUYS ,&lt;/P&gt;&lt;P&gt;DOES ANYONE HAVE A SAMPLE CODE TO LOAD THE CUSTOER MASTER  DATA USING BAPIS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Jul 2008 06:09:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-23T06:09:34Z</dc:date>
    <item>
      <title>to load customer master using bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-load-customer-master-using-bapi/m-p/4205343#M1005032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI GUYS ,&lt;/P&gt;&lt;P&gt;DOES ANYONE HAVE A SAMPLE CODE TO LOAD THE CUSTOER MASTER  DATA USING BAPIS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 06:09:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-load-customer-master-using-bapi/m-p/4205343#M1005032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T06:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: to load customer master using bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-load-customer-master-using-bapi/m-p/4205344#M1005033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nishanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TO LOAD THE CUSTOER MASTER DATA USING BAPIS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case you wish to read the customer data you can use the following BAPI, it retrieves the Customer Master (Company Code) Data and the General Data in Customer Master.&lt;/P&gt;&lt;P&gt;CUSTOMER_READ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to pass the Customer Number and the Company Code. See the example given below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZEX_CUSTOMERREAD .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters: p_bukrs like KNB1-BUKRS,&lt;/P&gt;&lt;P&gt;            p_kunnr like KNA1-KUNNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: ty_kna1 type kna1,&lt;/P&gt;&lt;P&gt;      ty_knb1 type knb1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: int_kna1 like ty_kna1,&lt;/P&gt;&lt;P&gt;      int_knb1 like ty_knb1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CUSTOMER_READ'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    I_BUKRS         = p_bukrs&lt;/P&gt;&lt;P&gt;    I_KUNNR         = p_kunnr&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   E_KNA1          = int_Kna1&lt;/P&gt;&lt;P&gt;   E_KNB1          = int_knb1&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   NOT_FOUND       = 1&lt;/P&gt;&lt;P&gt;   OTHERS          = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 07:40:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-load-customer-master-using-bapi/m-p/4205344#M1005033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T07:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: to load customer master using bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-load-customer-master-using-bapi/m-p/4205345#M1005034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;nishant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just use either:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;BAPI_CUSTOMER_CREATE
BAPI_CUSTOMER_CREATEFROMDATA
BAPI_CUSTOMER_CREATEFROMDATA1&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 07:47:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-load-customer-master-using-bapi/m-p/4205345#M1005034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T07:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: to load customer master using bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-load-customer-master-using-bapi/m-p/4205346#M1005035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG&gt;Nishant&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below links.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://abaplovers.blogspot.com/2008/03/customer-master-bapis-function-modules.html" target="test_blank"&gt;http://abaplovers.blogspot.com/2008/03/customer-master-bapis-function-modules.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://abap.wikiprog.com/wiki/BAPI_CUSTOMER_CREATEFROMDATA1" target="test_blank"&gt;http://abap.wikiprog.com/wiki/BAPI_CUSTOMER_CREATEFROMDATA1&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If Found Help Full Do Reward.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Regards&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Eshwar.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 07:59:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-load-customer-master-using-bapi/m-p/4205346#M1005035</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T07:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: to load customer master using bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-load-customer-master-using-bapi/m-p/4205347#M1005036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI GUYS ,&lt;/P&gt;&lt;P&gt;I WANT TO  CREATE A CUSTOMER MASTER FROM A FLAT FILE .HOW CAN I DO  THIS.&lt;/P&gt;&lt;P&gt;THANKS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 08:37:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-load-customer-master-using-bapi/m-p/4205347#M1005036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T08:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: to load customer master using bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-load-customer-master-using-bapi/m-p/4205348#M1005037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://www.ashpeople.comashthomas" target="test_blank"&gt;http://www.ashpeople.comashthomas&lt;/A&gt; &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;A href="https://community.sap.com/www.sapfans.com/forums/viewtopic.php?f=13&amp;amp;t=314946&amp;amp;p=953638" target="test_blank"&gt;www.sapfans.com/forums/viewtopic.php?f=13&amp;amp;t=314946&amp;amp;p=953638&lt;/A&gt; - 21k - (check this link)&lt;/P&gt;&lt;P&gt;With thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Sravani yendru.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 12:24:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-load-customer-master-using-bapi/m-p/4205348#M1005037</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T12:24:54Z</dc:date>
    </item>
  </channel>
</rss>

