<?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: Problem with FM: BAPI_SALESDOCU_CREATEWITHDIA in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958402#M1489566</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..&lt;/P&gt;&lt;P&gt;if you are in CRM you can delete the condition with FM CRM_ORDER_MAINTAIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 May 2010 15:13:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-25T15:13:23Z</dc:date>
    <item>
      <title>Problem with FM: BAPI_SALESDOCU_CREATEWITHDIA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958394#M1489558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i will use the FM: BAPI_SALESDOCU_CREATEWITHDIA&lt;/P&gt;&lt;P&gt;and i try it with this Code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
* Daten für BAPISDORDER_GETDETAILEDLIST
DATA: SALES_HEADER_IN   TYPE           BAPISDHEAD1.
DATA: IT_RETURN         TYPE TABLE OF  BAPIRET2.
DATA: WA_RETURN         TYPE           BAPIRET2.
DATA: IT_SALES_PARTNERS TYPE TABLE OF  BAPIPARTNR.
DATA: WA_SALES_PARTNERS TYPE           BAPIPARTNR.
DATA: IT_SALES_ITEMS_IN TYPE TABLE OF  BAPISDITEM.
DATA: WA_SALES_ITEMS_IN TYPE           BAPISDITEM.
*
************************************************************************
*
SALES_HEADER_IN-SALES_ORG     = '1000'.
SALES_HEADER_IN-DOC_TYPE      = 'XX'.
SALES_HEADER_IN-DISTR_CHAN    = 'XX'.
SALES_HEADER_IN-DIVISION      = 'XX'.
SALES_HEADER_IN-PURCH_NO_C    = 'TEST via BAPI'.
SALES_HEADER_IN-REQ_DATE_H    = SY-DATUM.
*
*Partners
WA_SALES_PARTNERS-PARTN_ROLE = 'AU'.
WA_SALES_PARTNERS-PARTN_NUMB = '0000004711'.
APPEND WA_SALES_PARTNERS TO IT_SALES_PARTNERS.
WA_SALES_PARTNERS-PARTN_ROLE = 'RE'.
APPEND WA_SALES_PARTNERS TO IT_SALES_PARTNERS.
WA_SALES_PARTNERS-PARTN_ROLE = 'RG'.
APPEND WA_SALES_PARTNERS TO IT_SALES_PARTNERS.
WA_SALES_PARTNERS-PARTN_ROLE = 'WE'.
APPEND WA_SALES_PARTNERS TO IT_SALES_PARTNERS.
*Positionen
WA_SALES_ITEMS_IN-MATERIAL   = '000000000000004711'.
WA_SALES_ITEMS_IN-TARGET_QTY = 100.
WA_SALES_ITEMS_IN-TARGET_QU  = 'ST'.
APPEND WA_SALES_ITEMS_IN TO IT_SALES_ITEMS_IN.
WA_SALES_ITEMS_IN-MATERIAL   = '000000000000004712'.
APPEND WA_SALES_ITEMS_IN TO IT_SALES_ITEMS_IN.
*
CALL FUNCTION 'BAPI_SALESDOCU_CREATEWITHDIA'
  EXPORTING
    SALES_HEADER_IN = SALES_HEADER_IN
  TABLES
    RETURN          = IT_RETURN
    SALES_ITEMS_IN  = IT_SALES_ITEMS_IN
    SALES_PARTNERS  = IT_SALES_PARTNERS.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All is OK but the field TARGET_QTY will not be filled (it's empty). Has sanyone an idea wich error i do?&lt;/P&gt;&lt;P&gt;Isn't it the right field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards, Dieter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 May 2010 09:31:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958394#M1489558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-25T09:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FM: BAPI_SALESDOCU_CREATEWITHDIA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958395#M1489559</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;Fill the data in the structures "SALES_SCHEDULES_IN" &amp;amp; "SALES_SCHEDULES_INX".&lt;/P&gt;&lt;P&gt;Total quantity filled in structure "SALES_SCHEDULES_IN-REQ_QTY" will be updated as item level order quantity or corresponding line item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vinod Kumar on May 25, 2010 3:10 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 May 2010 09:39:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958395#M1489559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-25T09:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FM: BAPI_SALESDOCU_CREATEWITHDIA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958396#M1489560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Dieter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after the 'BAPI_SALESDOCU_CREATEWITHDIA' you must call the BAPI_TRANSCTION_COMMIT...&lt;/P&gt;&lt;P&gt;for update the quantity if with target quantity not work you must use schedline sructure and it will work..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 May 2010 09:41:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958396#M1489560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-25T09:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FM: BAPI_SALESDOCU_CREATEWITHDIA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958397#M1489561</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;thanks for your answer. This problem is solved, but i get another one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I fill also the codition table. The problem is, that a automatic condition has now 2 value (lines).&lt;/P&gt;&lt;P&gt;First from the Kondition which we have inserted via VK11. second the contition we put in&lt;/P&gt;&lt;P&gt;the FM BAPI_SALESDOCU_CREATEWITHDIA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i avoid two conditons, or can i set any flag for updating or a flag for manuell not automatic?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 May 2010 13:39:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958397#M1489561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-25T13:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FM: BAPI_SALESDOCU_CREATEWITHDIA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958398#M1489562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  Dieter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with a similar steps for add conditions with the FM BAPI_SALESDOCU_CREATEWITHDIA. you can also delete conditions.&lt;/P&gt;&lt;P&gt;so before update a new condition you can delete the condition that you not want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 May 2010 13:50:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958398#M1489562</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-25T13:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FM: BAPI_SALESDOCU_CREATEWITHDIA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958399#M1489563</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;how can i delete the conditions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i insert the conditions like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*Konditionen
WA_SALES_CONDITIONS_IN-ITM_NUMBER = '000010'.
WA_SALES_CONDITIONS_IN-COND_TYPE  = 'PR00'.
WA_SALES_CONDITIONS_IN-COND_VALUE = 100.
WA_SALES_CONDITIONS_IN-CURRENCY   = 'EUR'.
WA_SALES_CONDITIONS_IN-COND_UNIT  = 'ST'.
WA_SALES_CONDITIONS_IN-COND_P_UNT = 1.
APPEND WA_SALES_CONDITIONS_IN TO IT_SALES_CONDITIONS_IN.
*
CALL FUNCTION 'BAPI_SALESDOCU_CREATEWITHDIA'
  EXPORTING
    SALES_HEADER_IN     = SALES_HEADER_IN
  TABLES
    RETURN              = IT_RETURN
    SALES_ITEMS_IN      = IT_SALES_ITEMS_IN
    SALES_SCHEDULES_IN  = IT_SALES_SCHEDULES_IN
    SALES_PARTNERS      = IT_SALES_PARTNERS
    SALES_CONDITIONS_IN = IT_SALES_CONDITIONS_IN.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 May 2010 14:20:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958399#M1489563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-25T14:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FM: BAPI_SALESDOCU_CREATEWITHDIA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958400#M1489564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry i said you a wrong thing....you cannot delete condition with this..but with order_maintain......&lt;/P&gt;&lt;P&gt;altought you can set the condition like a manual condition with this field &lt;/P&gt;&lt;P&gt;WA_SALES_CONDITIONS_IN-CONDCHAMAN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 May 2010 14:38:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958400#M1489564</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-25T14:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FM: BAPI_SALESDOCU_CREATEWITHDIA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958401#M1489565</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;i have set: WA_SALES_CONDITIONS_IN-CONDCHAMAN ='X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but now result, 2 conditionslines for PR00 again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 May 2010 14:48:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958401#M1489565</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-25T14:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FM: BAPI_SALESDOCU_CREATEWITHDIA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958402#M1489566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..&lt;/P&gt;&lt;P&gt;if you are in CRM you can delete the condition with FM CRM_ORDER_MAINTAIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 May 2010 15:13:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958402#M1489566</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-25T15:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FM: BAPI_SALESDOCU_CREATEWITHDIA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958403#M1489567</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;no, we don't have CRM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 May 2010 15:32:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958403#M1489567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-25T15:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FM: BAPI_SALESDOCU_CREATEWITHDIA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958404#M1489568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fill the structure SALES_CONDITIONS_INX.  pass 'D' in the structure field SALES_CONDITIONS_INX-UPDATEFLAG to delete specific record.  I have not tested this scenario with this BAPI. But definitely this works with the BAPI "BAPI_SALESORDER_CREATEFROMDAT2".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 05:01:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958404#M1489568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-26T05:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FM: BAPI_SALESDOCU_CREATEWITHDIA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958405#M1489569</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;thanks for your answer. I have test it like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*Konditionen
WA_SALES_CONDITIONS_IN-ITM_NUMBER  = '000010'.
WA_SALES_CONDITIONS_IN-COND_TYPE   = 'PR00'.
WA_SALES_CONDITIONS_IN-COND_VALUE  = 100.
WA_SALES_CONDITIONS_IN-CURRENCY    = 'EUR'.
WA_SALES_CONDITIONS_IN-COND_UNIT   = 'ST'.
WA_SALES_CONDITIONS_IN-COND_P_UNT  = 1.
APPEND WA_SALES_CONDITIONS_IN TO IT_SALES_CONDITIONS_IN.
*
WA_SALES_CONDITIONS_INX-ITM_NUMBER = '000010'.
WA_SALES_CONDITIONS_INX-COND_TYPE  = 'PR00'.
WA_SALES_CONDITIONS_INX-UPDATEFLAG = 'D'.
APPEND WA_SALES_CONDITIONS_INX TO IT_SALES_CONDITIONS_INX.
*
CALL FUNCTION 'BAPI_SALESDOCU_CREATEWITHDIA'
  EXPORTING
    SALES_HEADER_IN      = SALES_HEADER_IN
  TABLES
    RETURN               = IT_RETURN
    SALES_ITEMS_IN       = IT_SALES_ITEMS_IN
    SALES_SCHEDULES_IN   = IT_SALES_SCHEDULES_IN
    SALES_PARTNERS       = IT_SALES_PARTNERS
    SALES_CONDITIONS_IN  = IT_SALES_CONDITIONS_IN
    SALES_CONDITIONS_INX = IT_SALES_CONDITIONS_INX.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately it deletes the condition wich i want to insert, not the automatic from VK11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 07:42:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958405#M1489569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-26T07:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FM: BAPI_SALESDOCU_CREATEWITHDIA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958406#M1489570</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;As far as I know,  the bapi which you are using doesn't have to parameter to control the Pricing.  The parameter LOGIC_SWITCH in BAPI "BAPI_SALESORDER_CREATEFROMDAT2" is used to control the pricing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 07:59:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958406#M1489570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-26T07:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FM: BAPI_SALESDOCU_CREATEWITHDIA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958407#M1489571</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;thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i use BAPI_SALESORDER_CREATEFROMDAT2 and BAPI_TRANSACTION_COMMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After this i make       CALL TRANSACTION 'VA02' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;to go to the created salesorder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Every think is OK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i will insert text too and use parameter ORDER_TEXT.&lt;/P&gt;&lt;P&gt;position text are filled correct.&lt;/P&gt;&lt;P&gt;Header text are filled partly correct. One text which will normaly autmaticly included will&lt;/P&gt;&lt;P&gt;not set correct. Do you know any parameter to set automatic include off?&lt;/P&gt;&lt;P&gt;The incuded text has some formatted lines. Can this be the reason.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other normaly included text with no formatting can be inserted correct!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 May 2010 11:11:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958407#M1489571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-27T11:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FM: BAPI_SALESDOCU_CREATEWITHDIA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958408#M1489572</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;solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; In  BAPI_SALESORDER_CREATEFROMDAT2 i don't use ORDER_TEXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use FM: CSO_SD_SALES_TEXTS_SAVE to set text. It works like i need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks to all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 May 2010 13:02:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-fm-bapi-salesdocu-createwithdia/m-p/6958408#M1489572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-27T13:02:41Z</dc:date>
    </item>
  </channel>
</rss>

