<?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/1739774#M321551</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: mara,        "General Material Data&lt;/P&gt;&lt;P&gt;        mbew,        "Material Valuation&lt;/P&gt;&lt;P&gt;        zkt_cbht.    "Cost Blending History Table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: gt_cbht     TYPE TABLE OF zkt_cbht INITIAL SIZE 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: gs_bapi_head   TYPE   bapimathead,  "Header Data&lt;/P&gt;&lt;P&gt;      gs_bapi_mbew1  TYPE   bapi_mbew,    "Accounting View Data&lt;/P&gt;&lt;P&gt;      gs_bapi_mbewx  TYPE   bapi_mbewx,&lt;/P&gt;&lt;P&gt;      bapi_return    TYPE   bapiret2,&lt;/P&gt;&lt;P&gt;      gs_cbht        TYPE   zkt_cbht.     "Cost Blending History Table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Populate the internal table.&lt;/P&gt;&lt;P&gt;Select *&lt;/P&gt;&lt;P&gt;       from zkt_cbht&lt;/P&gt;&lt;P&gt;       into table gt_cbht.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Read all the table entries of ZKT_CBHT and update the&lt;/P&gt;&lt;P&gt;*Material master data.&lt;/P&gt;&lt;P&gt;LOOP AT gt_cbht INTO gs_cbht.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Header&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  gs_bapi_head-material        = gs_cbht-matnr.&lt;/P&gt;&lt;P&gt;  gs_bapi_head-basic_view      = 'X'.&lt;/P&gt;&lt;P&gt;  gs_bapi_head-purchase_view   = 'X'.&lt;/P&gt;&lt;P&gt;  gs_bapi_head-account_view    = 'X'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Accounting&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  gs_bapi_mbew1-val_area   = gs_cbht-werks.&lt;/P&gt;&lt;P&gt;  gs_bapi_mbew1-price_ctrl  = 'S'.&lt;/P&gt;&lt;P&gt;  gs_bapi_mbew1-std_price  = gs_cbht-stprs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Accounting X data&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  gs_bapi_mbewx-val_area   = gs_cbht-werks.&lt;/P&gt;&lt;P&gt;  gs_bapi_mbewx-price_ctrl = 'X'.&lt;/P&gt;&lt;P&gt;  gs_bapi_mbewx-std_price  = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Upadte the the Standard Price.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      headdata       = gs_bapi_head&lt;/P&gt;&lt;P&gt;      valuationdata  = gs_bapi_mbew1&lt;/P&gt;&lt;P&gt;      valuationdatax = gs_bapi_mbewx&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      return         = bapi_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Save the New Price Change.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WAIT          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RETURN        =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here my table zkt_cbht table has the fields like werks and std price.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Durgaprasad Kare&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Jan 2007 06:18:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-03T06:18:52Z</dc:date>
    <item>
      <title>BAPI_MATERIAL_SAVEDATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1739768#M321545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;im working on BAPI_MATERIAL_SAVEDATA and trying to update Standard Price of material .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;im trying to change its value in the valuation data and  valuationdatax structure.&lt;/P&gt;&lt;P&gt;the result is that  data is changed infm im recieving, but when i check it in MM03 only the moving price is getting updated but not the standard price.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have also use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MY_MATERIAL_PRICE_UPDATE&lt;/P&gt;&lt;P&gt;MY_MATERIAL_PRICE_CHANGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but there are not giving the result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help if anyone has worked on it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any other FMs for this is also appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Dec 2006 14:27:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1739768#M321545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-31T14:27:22Z</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/1739769#M321546</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;Please check this sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
report ztest.
 
data: headdata type bapimathead.
 
data: valdata type  bapi_mbew.
data: valdatax type  bapi_mbewx.
data: return type  bapiret2 .
data: returnm type table of bapi_matreturn2 with header line.
data: xmara type mara.
 
parameters: p_matnr type mbew-matnr,
            p_bwkey type mbew-bwkey,
            p_bwtar type mbew-bwtar,
            p_stprs type mbew-stprs.
 
select single * from mara into xmara
          where matnr = p_matnr.
 
headdata-material        = xmara-matnr.
headdata-ind_sector      = xmara-mbrsh.
headdata-matl_type       = xmara-mtart.
headdata-account_view = 'X'.
 
valdata-val_area  = p_bwkey.
valdata-val_type  = p_bwtar.
valdata-std_price = p_stprs.
 
valdatax-val_area  = p_bwkey.
valdatax-val_type  = p_bwtar.
valdatax-std_price = 'X'.
 
call function 'BAPI_MATERIAL_SAVEDATA'
     exporting
          headdata       = headdata
          valuationdata  = valdata
          valuationdatax = valdatax
     importing
          return         = return
     tables
          returnmessages = returnm.
 
check sy-subrc  = 0.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also please check FM CKML_UPDATE_MATERIAL_PRICE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Dec 2006 15:22:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1739769#M321546</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2006-12-31T15:22:35Z</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/1739770#M321547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That code looks familar...........  Looks like something I posted back in November.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2766408"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Dec 2006 15:51:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1739770#M321547</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-12-31T15:51:02Z</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/1739771#M321548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi rich and ferry,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thankls for ur reply....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i already have this code much is not solving my problem.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as of now im using MR21 transaction manually but im looking fo rthis type of code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried executing the bapi manually but only moving price is getting updated but not the std price i used commit work also but is of no use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;im taking care in updating field of valuation datax structure also ....&lt;/P&gt;&lt;P&gt;please help...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also BWkey is also populated but of no use......it is really urgent plz help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jan 2007 06:25:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1739771#M321548</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-02T06:25:43Z</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/1739772#M321549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please post the code which you have so far using the BAPI?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jan 2007 18:38:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1739772#M321549</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-01-02T18:38:02Z</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/1739773#M321550</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;Go to MM02..And try to manually change the standard price..If you were able to do it..I believe you can do it in BAPI also..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jan 2007 18:43:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1739773#M321550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-02T18:43:45Z</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/1739774#M321551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: mara,        "General Material Data&lt;/P&gt;&lt;P&gt;        mbew,        "Material Valuation&lt;/P&gt;&lt;P&gt;        zkt_cbht.    "Cost Blending History Table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: gt_cbht     TYPE TABLE OF zkt_cbht INITIAL SIZE 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: gs_bapi_head   TYPE   bapimathead,  "Header Data&lt;/P&gt;&lt;P&gt;      gs_bapi_mbew1  TYPE   bapi_mbew,    "Accounting View Data&lt;/P&gt;&lt;P&gt;      gs_bapi_mbewx  TYPE   bapi_mbewx,&lt;/P&gt;&lt;P&gt;      bapi_return    TYPE   bapiret2,&lt;/P&gt;&lt;P&gt;      gs_cbht        TYPE   zkt_cbht.     "Cost Blending History Table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Populate the internal table.&lt;/P&gt;&lt;P&gt;Select *&lt;/P&gt;&lt;P&gt;       from zkt_cbht&lt;/P&gt;&lt;P&gt;       into table gt_cbht.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Read all the table entries of ZKT_CBHT and update the&lt;/P&gt;&lt;P&gt;*Material master data.&lt;/P&gt;&lt;P&gt;LOOP AT gt_cbht INTO gs_cbht.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Header&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  gs_bapi_head-material        = gs_cbht-matnr.&lt;/P&gt;&lt;P&gt;  gs_bapi_head-basic_view      = 'X'.&lt;/P&gt;&lt;P&gt;  gs_bapi_head-purchase_view   = 'X'.&lt;/P&gt;&lt;P&gt;  gs_bapi_head-account_view    = 'X'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Accounting&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  gs_bapi_mbew1-val_area   = gs_cbht-werks.&lt;/P&gt;&lt;P&gt;  gs_bapi_mbew1-price_ctrl  = 'S'.&lt;/P&gt;&lt;P&gt;  gs_bapi_mbew1-std_price  = gs_cbht-stprs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Accounting X data&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  gs_bapi_mbewx-val_area   = gs_cbht-werks.&lt;/P&gt;&lt;P&gt;  gs_bapi_mbewx-price_ctrl = 'X'.&lt;/P&gt;&lt;P&gt;  gs_bapi_mbewx-std_price  = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Upadte the the Standard Price.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      headdata       = gs_bapi_head&lt;/P&gt;&lt;P&gt;      valuationdata  = gs_bapi_mbew1&lt;/P&gt;&lt;P&gt;      valuationdatax = gs_bapi_mbewx&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      return         = bapi_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Save the New Price Change.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WAIT          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RETURN        =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here my table zkt_cbht table has the fields like werks and std price.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Durgaprasad Kare&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jan 2007 06:18:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1739774#M321551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-03T06:18:52Z</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/1739775#M321552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to ferry and rich heilman.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my problem got solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jan 2007 16:13:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1739775#M321552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-12T16:13:21Z</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/1739776#M321553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have used a different function module to over come my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the FM is mb_material_price_update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;apart from this u can go with BDC  else u will not get the required .i was not successful using BAPI_MATERIAL_SAVEDATA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jan 2007 16:15:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-material-savedata/m-p/1739776#M321553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-12T16:15:50Z</dc:date>
    </item>
  </channel>
</rss>

