<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/11802868#M1954324</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"Where used" for the structure BAPI_MARM does not find any such FMs, so I guess unless such FM is programmed in some twisted way the answer is "no". Ditto for the second structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The FMs for the other two structures seem to be generated though, so I'm curious how that was done exactly and why for only two structures. Maybe there is something in the SAP notes?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Aug 2016 18:45:03 GMT</pubDate>
    <dc:creator>Jelena_Perfiljeva</dc:creator>
    <dc:date>2016-08-09T18:45:03Z</dc:date>
    <item>
      <title>BAPI_MATERIAL_SAVEDATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/11802867#M1954323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In&amp;nbsp; BAPI_MATERIAL_SAVEDATA i have a requirement to map&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MARM&amp;nbsp; &amp;gt; &amp;gt; BAPI_MARM&amp;nbsp; and &lt;/P&gt;&lt;P&gt;MAKT&amp;nbsp;&amp;nbsp; &amp;gt; &amp;gt; BAPI_MAKT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are there any function modules to do this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got FMs for converting MARA &amp;gt; BAPI_MARA and MARC &amp;gt; BAPI_MARC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2016 06:56:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/11802867#M1954323</guid>
      <dc:creator>suhas_gavas</dc:creator>
      <dc:date>2016-08-09T06:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_SAVEDATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/11802868#M1954324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"Where used" for the structure BAPI_MARM does not find any such FMs, so I guess unless such FM is programmed in some twisted way the answer is "no". Ditto for the second structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The FMs for the other two structures seem to be generated though, so I'm curious how that was done exactly and why for only two structures. Maybe there is something in the SAP notes?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2016 18:45:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/11802868#M1954324</guid>
      <dc:creator>Jelena_Perfiljeva</dc:creator>
      <dc:date>2016-08-09T18:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_MATERIAL_SAVEDATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/11802869#M1954325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, the Function module that you might have got are only assigning the import fields to export fields, nothing impressive about those function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also the structure BAPI_MARM &amp;amp; BAPI_MAKT have very few fields. you can easily create those before calling the BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : it_makt type standard table of bapi_makt with empty key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_data_makt into data(wa_data_makt).&lt;/P&gt;&lt;P&gt;it_makt&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;VALUE &lt;/SPAN&gt;#&lt;SPAN class="L0S55"&gt;( &lt;/SPAN&gt;BASE it_makt &lt;SPAN class="L0S55"&gt;( &lt;/SPAN&gt;langu &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;wa_data_makt&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;langu langu_iso &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;wa_data_makt&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;langu_iso .....&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;endloop.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Aug 2016 12:28:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/11802869#M1954325</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-08-10T12:28:22Z</dc:date>
    </item>
  </channel>
</rss>

