<?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_MATERIAL_SAVEDATA  Fill extention structure uncode confirm? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata-fill-extention-structure-uncode-confirm/m-p/3409550#M818834</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, your anser was very helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Feb 2008 11:39:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-12T11:39:27Z</dc:date>
    <item>
      <title>BAPI_MATERIAL_SAVEDATA  Fill extention structure uncode confirm?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata-fill-extention-structure-uncode-confirm/m-p/3409548#M818832</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;We use an extion of the mara. Therfore if we save own data with BAPI_MATRIAL_SAVEDATA we have to fill the EXTENSIONIN struktur like the code example 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will not longer be supported&lt;/P&gt;&lt;P&gt; After a structure enhancement, assignment or comparison may no longer be  permitted. syntactically incorrect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How could we fill the exteionstructure unicode cofirm ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards &lt;/P&gt;&lt;P&gt;Gerhard&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code-example 1:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: &lt;/P&gt;&lt;P&gt;        wa_zmara   TYPE bapi_te_mara,&lt;/P&gt;&lt;P&gt;        wa_zmarax  TYPE bapi_te_marax,&lt;/P&gt;&lt;P&gt;        t_ext      TYPE STANDARD TABLE OF bapiparex,&lt;/P&gt;&lt;P&gt;        t_extx     TYPE STANDARD TABLE OF bapiparexx,&lt;/P&gt;&lt;P&gt;        value(960),&lt;/P&gt;&lt;P&gt;        valuex(960).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    value = wa_zmara.&lt;/P&gt;&lt;P&gt;      wa_ext-structure = 'BAPI_TE_MARA'.&lt;/P&gt;&lt;P&gt;      wa_ext-valuepart1 = value(240).&lt;/P&gt;&lt;P&gt;      wa_ext-valuepart2 = value+240(240).&lt;/P&gt;&lt;P&gt;      wa_ext-valuepart3 = value+480(240).&lt;/P&gt;&lt;P&gt;      wa_ext-valuepart4 = value+720(240).&lt;/P&gt;&lt;P&gt;      APPEND wa_ext TO t_ext.&lt;/P&gt;&lt;P&gt;      valuex = wa_zmarax.&lt;/P&gt;&lt;P&gt;      wa_extx-structure = 'BAPI_TE_MARAX'.&lt;/P&gt;&lt;P&gt;      wa_extx-valuepart1 = valuex(240).&lt;/P&gt;&lt;P&gt;      wa_extx-valuepart2 = valuex+240(240).&lt;/P&gt;&lt;P&gt;      wa_extx-valuepart3 = valuex+480(240).&lt;/P&gt;&lt;P&gt;      wa_extx-valuepart4 = valuex+720(240).&lt;/P&gt;&lt;P&gt;      APPEND wa_extx TO t_extx.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 10:33:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata-fill-extention-structure-uncode-confirm/m-p/3409548#M818832</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T10:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_SAVEDATA  Fill extention structure uncode confirm?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata-fill-extention-structure-uncode-confirm/m-p/3409549#M818833</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;Try this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
class cl_abap_container_utilities definition load.
data: wa_ BAPIPAREX type BAPIPAREX.

  call method cl_abap_container_utilities=&amp;gt;read_container_c
    exporting
      im_container           = value
    importing
      ex_value               = wa_BAPIPAREX
    exceptions
      illegal_parameter_type = 1
      others                 = 2.

   APPEND wa_BAPIPAREX TO t_ext.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 15:46:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata-fill-extention-structure-uncode-confirm/m-p/3409549#M818833</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-02-11T15:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_SAVEDATA  Fill extention structure uncode confirm?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata-fill-extention-structure-uncode-confirm/m-p/3409550#M818834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, your anser was very helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 11:39:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata-fill-extention-structure-uncode-confirm/m-p/3409550#M818834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T11:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_SAVEDATA  Fill extention structure uncode confirm?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata-fill-extention-structure-uncode-confirm/m-p/3409551#M818835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This answer is perfect. Kindly mark this thread as answered, so that it will be helpful for others.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2016 04:10:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata-fill-extention-structure-uncode-confirm/m-p/3409551#M818835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-07T04:10:02Z</dc:date>
    </item>
  </channel>
</rss>

