<?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: Upload program for VA01. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-va01/m-p/1302363#M158909</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;Ther's a very fine tool in the SAP-System to import sales orders (VA01) into the system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's the transaction SXDA (see online docu for this).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'll have to create a new SXDA "project" using the object type "BUS2032" and the best .... no programming has to be done !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rainer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some points would be nice if that helped a bit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 31 May 2006 04:31:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-31T04:31:14Z</dc:date>
    <item>
      <title>Upload program for VA01.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-va01/m-p/1302360#M158906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone, does anyone have any example of upload program for VA01- Create Sales Order, and anyone able to show how can i use FM: SAVE_TEXT to upload header text and item text into VA01. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2006 01:49:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-va01/m-p/1302360#M158906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-31T01:49:27Z</dc:date>
    </item>
    <item>
      <title>Re: Upload program for VA01.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-va01/m-p/1302361#M158907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;GOOD&lt;/P&gt;&lt;P&gt;SAVE_TEXT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAVE_TEXT writes a text module back to the text file or the text memory, depending on the storage mode of the corresponding text object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use this module either to change existing texts or to create new texts. If you know for sure that the text is new, use the parameter INSERT to indicate this. The system then does not have to read the text first, which improves the performance of the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the lines table passed with the function module is empty, the system deletes the text from the text file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function call:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SAVE_TEXT' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORTING CLIENT = SY-MANDT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HEADER = ?...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAVEMODE_DIRECT = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OWNER_SPECIFIED = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORTING FUNCTION = &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEWHEADER = &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES LINES = ?...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXCEPTIONS ID =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LANGUAGE =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NAME =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJECT =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_40b/helpdata/ru/d6/0db8ef494511d182b70000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_40b/helpdata/ru/d6/0db8ef494511d182b70000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_40b/helpdata/en/d6/0dc169494511d182b70000e829fbfe/applet.htm" target="test_blank"&gt;http://help.sap.com/saphelp_40b/helpdata/en/d6/0dc169494511d182b70000e829fbfe/applet.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS&lt;/P&gt;&lt;P&gt;MRUTYUN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Mrutyunjaya Tripathy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2006 03:42:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-va01/m-p/1302361#M158907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-31T03:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: Upload program for VA01.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-va01/m-p/1302362#M158908</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;You can use the BAPI BAPI_SALESORDER_CREATEFROMDAT2 to upload the sales orders. You will have to read the file and pass the data to the function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, if you want to add texts while creating the texts you can do that using the parameter &amp;lt;b&amp;gt;ORDER_TEXT STRUCTURE  BAPISDTEXT OPTIONAL&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you still want to use SAVE_TEXT, you need to use these parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Text Name - Sales Order Number&lt;/P&gt;&lt;P&gt;Language        EN&lt;/P&gt;&lt;P&gt;Text ID         0001 Form Header (This changes depending on what text you want to change)&lt;/P&gt;&lt;P&gt;Text object     VBBK       Sales     Header texts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can find the parameter details by going into the full screen mode of a existing sales order and then im the menu  Go To--&amp;gt; Header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The same thing applies to Item texts as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2006 03:43:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-va01/m-p/1302362#M158908</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-31T03:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: Upload program for VA01.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-va01/m-p/1302363#M158909</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;Ther's a very fine tool in the SAP-System to import sales orders (VA01) into the system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's the transaction SXDA (see online docu for this).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'll have to create a new SXDA "project" using the object type "BUS2032" and the best .... no programming has to be done !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rainer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some points would be nice if that helped a bit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2006 04:31:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-va01/m-p/1302363#M158909</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-31T04:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: Upload program for VA01.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-va01/m-p/1302364#M158910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rayblur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check these links.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1229476"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="906180"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Susmitha. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dont forget to reward points for useful answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2006 06:11:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-va01/m-p/1302364#M158910</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-31T06:11:32Z</dc:date>
    </item>
  </channel>
</rss>

