<?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 entension in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-entension/m-p/7671299#M1575116</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you could use something like this: &lt;/P&gt;&lt;P&gt;  data: l_wa_bapi_ex type y_bapiparex.&lt;/P&gt;&lt;P&gt;  data: l_valuepart type valuepart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      l_wa_bapi_ex-structure = 'BAPE_VBAP'.&lt;/P&gt;&lt;P&gt;      clear l_valuepart.&lt;/P&gt;&lt;P&gt;      l_valuepart+10(6) = l_wa_zuskont-posnr_sap. "Position nr.&lt;/P&gt;&lt;P&gt;      l_valuepart+16(6) = l_wa_zuskont-zzxxx.   &lt;/P&gt;&lt;P&gt;      l_valuepart+22(5) = l_wa_zuskont-zzyyy.&lt;/P&gt;&lt;P&gt;      l_wa_bapi_ex-valuepart1 = l_valuepart.&lt;/P&gt;&lt;P&gt;      append l_wa_bapi_ex to p_int_bapi_ex.&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But: &lt;/P&gt;&lt;P&gt;make sure that your customer fields are defined in the tables   VBAPKOZ, VBAPKOZX, BAPE_VBAP and BAPE_VBAPX.&lt;/P&gt;&lt;P&gt;And: i never managed to fill something other then character type fields..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first 10 bytes of the first value part contain the Order/inquiry number - if you have one. Else, if you create a new document with an internal number, they remain empty. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Wolfgang&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Feb 2011 12:11:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-02-24T12:11:30Z</dc:date>
    <item>
      <title>BAPI entension</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-entension/m-p/7671298#M1575115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;   I need to use BAPI_INQUIRY_CREATEFROMDATA2. I've used it in my code &amp;amp; its working fine. But I have almost 25 fields Z fields appended in VBAP. I need to update the same while creating enquiry/ Order/ Contract.&lt;/P&gt;&lt;P&gt;  I tried all the ways available in SDN &amp;amp; even tried the way in SP note 143580 but didn;t get success. If anyone has done it, kindly provide me the step by step procedure &amp;amp; code extract. It'd be big help for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks:&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 11:24:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-entension/m-p/7671298#M1575115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-24T11:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI entension</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-entension/m-p/7671299#M1575116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you could use something like this: &lt;/P&gt;&lt;P&gt;  data: l_wa_bapi_ex type y_bapiparex.&lt;/P&gt;&lt;P&gt;  data: l_valuepart type valuepart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      l_wa_bapi_ex-structure = 'BAPE_VBAP'.&lt;/P&gt;&lt;P&gt;      clear l_valuepart.&lt;/P&gt;&lt;P&gt;      l_valuepart+10(6) = l_wa_zuskont-posnr_sap. "Position nr.&lt;/P&gt;&lt;P&gt;      l_valuepart+16(6) = l_wa_zuskont-zzxxx.   &lt;/P&gt;&lt;P&gt;      l_valuepart+22(5) = l_wa_zuskont-zzyyy.&lt;/P&gt;&lt;P&gt;      l_wa_bapi_ex-valuepart1 = l_valuepart.&lt;/P&gt;&lt;P&gt;      append l_wa_bapi_ex to p_int_bapi_ex.&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But: &lt;/P&gt;&lt;P&gt;make sure that your customer fields are defined in the tables   VBAPKOZ, VBAPKOZX, BAPE_VBAP and BAPE_VBAPX.&lt;/P&gt;&lt;P&gt;And: i never managed to fill something other then character type fields..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first 10 bytes of the first value part contain the Order/inquiry number - if you have one. Else, if you create a new document with an internal number, they remain empty. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Wolfgang&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 12:11:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-entension/m-p/7671299#M1575116</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-24T12:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI entension</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-entension/m-p/7671300#M1575117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you provide the code snippet of how you are updating the extension structures? and also are you getting error message or z fields are not getting update?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 15:38:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-entension/m-p/7671300#M1575117</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-24T15:38:03Z</dc:date>
    </item>
  </channel>
</rss>

