<?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: BAPI Extension - Sales Order(VBAK, VBAP) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-extension-sales-order-vbak-vbap/m-p/6744452#M1459086</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Read OSS [Note 143580 - Information on SD BAPIs and customer enhancement concept|https://service.sap.com/sap/support/notes/143580] which describes the process to implement your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Feb 2010 14:08:18 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2010-02-24T14:08:18Z</dc:date>
    <item>
      <title>BAPI Extension - Sales Order(VBAK, VBAP)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-extension-sales-order-vbak-vbap/m-p/6744449#M1459083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;          Please help me in the issue .  I have added user custom fields for sales order va01 in header and item . i am using bapi for creating sales order . I need do use Extensionin struture for updating table vbak and vbap. Can anyone brief the procedure for acheiving the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2010 13:17:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-extension-sales-order-vbak-vbap/m-p/6744449#M1459083</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-24T13:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI Extension - Sales Order(VBAK, VBAP)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-extension-sales-order-vbak-vbap/m-p/6744450#M1459084</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;Refer to the documentation of the BAPI "BAPI_SALESORDER_CREATEFROMDAT2". It will update custom fields as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer to the documentation given for EXTENSIONIN parameter of this BAPI. It contains all the details to handle custom fields updation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ganga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2010 13:24:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-extension-sales-order-vbak-vbap/m-p/6744450#M1459084</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-24T13:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI Extension - Sales Order(VBAK, VBAP)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-extension-sales-order-vbak-vbap/m-p/6744451#M1459085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eric, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Extensions for VBAK, VBAP can be filled like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR e_extension.&lt;/P&gt;&lt;P&gt;e_extension-structure     = 'BAPE_VBAK'.   ---&amp;gt; For VBAK&lt;/P&gt;&lt;P&gt;e_extension-valuepart1+10 = VAL1&lt;/P&gt;&lt;P&gt;e_extension-valuepart1+46 = VAL2.&lt;/P&gt;&lt;P&gt;e_extension-valuepart1+56 = VAL3.&lt;/P&gt;&lt;P&gt;e_extension-valuepart1+59 = VAL4&lt;/P&gt;&lt;P&gt;APPEND e_extension TO t_extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The same for VBAP&lt;/P&gt;&lt;P&gt;CLEAR e_extension.&lt;/P&gt;&lt;P&gt;e_extension-structure     = 'BAPE_VBAP'.   ---&amp;gt; For VBAP&lt;/P&gt;&lt;P&gt;e_extension-valuepart1+10 = VAL1&lt;/P&gt;&lt;P&gt;e_extension-valuepart1+46 = VAL2.&lt;/P&gt;&lt;P&gt;e_extension-valuepart1+56 = VAL3.&lt;/P&gt;&lt;P&gt;e_extension-valuepart1+59 = VAL4&lt;/P&gt;&lt;P&gt;APPEND e_extension TO t_extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_SALESORDER...."&lt;/P&gt;&lt;P&gt;       ...&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;        ...   &lt;/P&gt;&lt;P&gt;      extensionin        = t_extension.&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;Ernesto&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ernesto Caballero on Feb 24, 2010 3:03 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2010 14:03:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-extension-sales-order-vbak-vbap/m-p/6744451#M1459085</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-24T14:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI Extension - Sales Order(VBAK, VBAP)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-extension-sales-order-vbak-vbap/m-p/6744452#M1459086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Read OSS [Note 143580 - Information on SD BAPIs and customer enhancement concept|https://service.sap.com/sap/support/notes/143580] which describes the process to implement your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2010 14:08:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-extension-sales-order-vbak-vbap/m-p/6744452#M1459086</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2010-02-24T14:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI Extension - Sales Order(VBAK, VBAP)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-extension-sales-order-vbak-vbap/m-p/6744453#M1459087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;answersd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 May 2010 16:39:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-extension-sales-order-vbak-vbap/m-p/6744453#M1459087</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-28T16:39:07Z</dc:date>
    </item>
  </channel>
</rss>

