<?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 Error in BAPI_MATERIAL_SAVEDATA in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-material-savedata/m-p/5017587#M1167573</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting an error in the above mentioned BAPI.The error is E3-461 "Specify the degree of parameter optimization".This error is not indication any input data related issues.&lt;/P&gt;&lt;P&gt;Please let me know if somebody has any solution available to troubleshoot this error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Jan 2009 04:48:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-20T04:48:19Z</dc:date>
    <item>
      <title>Error in BAPI_MATERIAL_SAVEDATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-material-savedata/m-p/5017587#M1167573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting an error in the above mentioned BAPI.The error is E3-461 "Specify the degree of parameter optimization".This error is not indication any input data related issues.&lt;/P&gt;&lt;P&gt;Please let me know if somebody has any solution available to troubleshoot this error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2009 04:48:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-material-savedata/m-p/5017587#M1167573</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-20T04:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: Error in BAPI_MATERIAL_SAVEDATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-material-savedata/m-p/5017588#M1167574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jaydeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you check the function module documentation, it is mentioned as below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;In the header data, you must select at least one view for which data is to be created. Depending on the view selected, you must maintain other required parameters. If you do not enter values for all of the required parameters, the method is ended with an error message.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So kindly check if the parameters that you are passing to this BAPI is as required. &lt;/P&gt;&lt;P&gt;Also to make sure how to use this BAPI, you can do a where-used list on this BAPI. You will find some standard programs where this is called. Using that as an example, you can call the BAPI in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Ram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2009 04:55:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-material-savedata/m-p/5017588#M1167574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-20T04:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: Error in BAPI_MATERIAL_SAVEDATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-material-savedata/m-p/5017589#M1167575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jaydeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    I used this BAPI and this is how i called that fn module  &lt;/P&gt;&lt;P&gt;&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            = wa_it_headdata&lt;/P&gt;&lt;P&gt;        clientdata          = wa_it_clientdata&lt;/P&gt;&lt;P&gt;        clientdatax         = wa_it_clientdatax&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        return              = wa_it_return&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        materialdescription = it_materialdescription.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here &lt;/P&gt;&lt;P&gt;wa_it_headdata: has data in main screen like material number , industry type and material type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_it_clientdata: has second screen values like  MATL_GROUP BASE_UOM here make sure tht u pass all the mandetry feilds for this u can execute MM01 manually and try to save material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_it_clientdatax:in this check all the feilds which u are passing in wa_it_clientdata&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Raghu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2009 05:29:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-material-savedata/m-p/5017589#M1167575</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-20T05:29:54Z</dc:date>
    </item>
  </channel>
</rss>

