<?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 Userextension Concept in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-userextension-concept/m-p/1815788#M349304</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for reply. I know how to use the BAPI customer extensions 'cause I do use them in many ABAPs but my problem is I already exceed the maximum length of the BAPE_VBAP structure with user fields appended to VBAP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Feb 2007 09:05:14 GMT</pubDate>
    <dc:creator>MichiFr</dc:creator>
    <dc:date>2007-02-02T09:05:14Z</dc:date>
    <item>
      <title>BAPI Userextension Concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-userextension-concept/m-p/1815784#M349300</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'm using the FM BAPI_SALESORDER_CHANGE to change existing orders and their positions. The positions contain lots of user fields appended to the original VBAP structure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The length ot this append already hast reached 1.151 characters - DDIC or 1.031 characters - ABAP. I'm planning to add an additional field to this append structure and need to change this new field via the above mentioned FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem I encounter now is within the BAPI extension structure VBAP_BAPE: This structure holds only four fields with a summed up length of 960 characters. This means I won't be able to change my new field at all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What can I do in this case? Any hints are welcome!&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Edit: Sorry I meant BAPE_VBAP not VBAP_BAPE!&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Michael Fritz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Feb 2007 08:44:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-userextension-concept/m-p/1815784#M349300</guid>
      <dc:creator>MichiFr</dc:creator>
      <dc:date>2007-02-02T08:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI Userextension Concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-userextension-concept/m-p/1815785#M349301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt; Is it possible to split the append structure into two append structures?&lt;/P&gt;&lt;P&gt;In that case you can have two records in the EXTENSIONIN table.&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>Fri, 02 Feb 2007 08:53:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-userextension-concept/m-p/1815785#M349301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-02T08:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI Userextension Concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-userextension-concept/m-p/1815786#M349302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is the example for BAPI_SALESORDER_CREATEFROMDAT2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The extension structure of header, item and scheduling are BAPE_VBAK, BAPE_VBAP and BAPE_VBEP for the values and BAPE_VBAKX, BAPE_VBAPX and BAPE_VBEPX for flag of updating.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should know which strcutures to be used reading the BAPI documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case I needs to enhance the structure VBAKKOZ, VBAPKOZ and VBEPKOZ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example for new item fields you should add your Z-field for item in VBAP, VBAPKOZ and BAPE_VBAP; if you have added Z-FIELD in VBAPKOZ you have to insert ZZ-FIELD but as flag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So while you're passing the data to BAPI:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPE_VBAP-VBELN =&lt;/P&gt;&lt;P&gt;BAPE_VBAP-POSNR =&lt;/P&gt;&lt;P&gt;BAPE_VBAP-ZFIELD1 =&lt;/P&gt;&lt;P&gt;BAPE_VBAP-ZFIELD2 =&lt;/P&gt;&lt;P&gt;................... &lt;/P&gt;&lt;P&gt;BAPE_VBAP-ZFIELDN =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPIPAREX-STRUCTURE = 'BAPE_VBAP'.&lt;/P&gt;&lt;P&gt;BAPIPAREX+30 = BAPE_VBAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND BAPIPAREX TO EXTENSIONIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPE_VBAPX-VBELN =&lt;/P&gt;&lt;P&gt;BAPE_VBAPX-POSNR =&lt;/P&gt;&lt;P&gt;BAPE_VBAPX-ZFIELD1 = 'X'&lt;/P&gt;&lt;P&gt;BAPE_VBAPX-ZFIELD2 = 'X'&lt;/P&gt;&lt;P&gt;................... &lt;/P&gt;&lt;P&gt;BAPE_VBAPX-ZFIELDN = 'X'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPIPAREX-STRUCTURE = 'BAPE_VBAPX'.&lt;/P&gt;&lt;P&gt;BAPIPAREX+30 = BAPE_VBAPX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND BAPIPAREX TO EXTENSIONIN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Feb 2007 08:56:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-userextension-concept/m-p/1815786#M349302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-02T08:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI Userextension Concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-userextension-concept/m-p/1815787#M349303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how would you do this, passing two EXTENSIONIN records?&lt;/P&gt;&lt;P&gt;Currently I'm doing this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;           
wa_bape_vbap-vbeln         = vbap-vbeln.
wa_bape_vbap-posnr         = vbap-posnr.
wa_bape_vbap-zzaumadm      = l_tab_ihpad-parnr.
l_tab_bapiparex-structure  = 'BAPE_VBAP'.
l_tab_bapiparex-valuepart1 = wa_bape_vbap.
l_tab_bapiparex-valuepart2 = wa_bape_vbap+240.
l_tab_bapiparex-valuepart3 = wa_bape_vbap+480.
l_tab_bapiparex-valuepart4 = wa_bape_vbap+720.
APPEND l_tab_bapiparex.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Feb 2007 08:59:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-userextension-concept/m-p/1815787#M349303</guid>
      <dc:creator>MichiFr</dc:creator>
      <dc:date>2007-02-02T08:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI Userextension Concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-userextension-concept/m-p/1815788#M349304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for reply. I know how to use the BAPI customer extensions 'cause I do use them in many ABAPs but my problem is I already exceed the maximum length of the BAPE_VBAP structure with user fields appended to VBAP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Feb 2007 09:05:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-userextension-concept/m-p/1815788#M349304</guid>
      <dc:creator>MichiFr</dc:creator>
      <dc:date>2007-02-02T09:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI Userextension Concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-userextension-concept/m-p/1815789#M349305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            I am also Facing a similar situation that the custom fileds we have added in Order Item level(BAPE_VBAP) gets exceeded the 960 characters length of structure BAPIPAREX. Did your problem got resolved? If yes please send me the details how did you overcome with this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ankit Sharma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 17:25:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-userextension-concept/m-p/1815789#M349305</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T17:25:46Z</dc:date>
    </item>
  </channel>
</rss>

