<?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 Problem in BAPI_SALESORDER_CREATEFROMDAT2 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-salesorder-createfromdat2/m-p/1203445#M131492</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;i try to create a sales order using the bapi, " BAPI_SALESORDER_CREATEFROMDAT2", But the retrun table specified error like "No customer master record exists for customer 106  "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the custmer 106 is in customer master and i created sales order with this customer using the transaction VA01.&lt;/P&gt;&lt;P&gt;Plz tell any one what is the problem?&lt;/P&gt;&lt;P&gt;thanks in advance,&lt;/P&gt;&lt;P&gt;Elamaran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Mar 2006 17:44:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-17T17:44:35Z</dc:date>
    <item>
      <title>Problem in BAPI_SALESORDER_CREATEFROMDAT2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-salesorder-createfromdat2/m-p/1203445#M131492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;i try to create a sales order using the bapi, " BAPI_SALESORDER_CREATEFROMDAT2", But the retrun table specified error like "No customer master record exists for customer 106  "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the custmer 106 is in customer master and i created sales order with this customer using the transaction VA01.&lt;/P&gt;&lt;P&gt;Plz tell any one what is the problem?&lt;/P&gt;&lt;P&gt;thanks in advance,&lt;/P&gt;&lt;P&gt;Elamaran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Mar 2006 17:44:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-salesorder-createfromdat2/m-p/1203445#M131492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-17T17:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in BAPI_SALESORDER_CREATEFROMDAT2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-salesorder-createfromdat2/m-p/1203446#M131493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Elam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Keep the zeros infront of  customer number 106 (to field length of KUNNR) You need to convert.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Mar 2006 17:54:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-salesorder-createfromdat2/m-p/1203446#M131493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-17T17:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in BAPI_SALESORDER_CREATEFROMDAT2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-salesorder-createfromdat2/m-p/1203447#M131494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try sending customer number with padding zero&amp;#146;s, i.e, 0000000101.You can use 'CONVERSION_EXIT_ALPHA_INPUT' to pad the zeros.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      input  = v_kunnr&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      output = v_kunnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vamshi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Mar 2006 18:00:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-salesorder-createfromdat2/m-p/1203447#M131494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-17T18:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in BAPI_SALESORDER_CREATEFROMDAT2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-salesorder-createfromdat2/m-p/1203448#M131495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a data def and use it in the BAPI call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: TheCustomer like kna1-kunnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move '106' to TheCustomer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use TheCustomer in your PARTNER table for the BAPI call.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Mar 2006 18:09:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-salesorder-createfromdat2/m-p/1203448#M131495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-17T18:09:39Z</dc:date>
    </item>
  </channel>
</rss>

