<?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: Problem with material price in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313699#M162854</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did u try using FM MBEW_ARRAY_READ_MATNR_ALL.&lt;/P&gt;&lt;P&gt;Pass material number in the table IPRE03 and it will give u all the MBEW records.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 31 May 2006 11:51:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-31T11:51:44Z</dc:date>
    <item>
      <title>Problem with material price</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313690#M162845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; I have used bapi BAPI_MATERIAL_GET_DETAIL,then i am getting material price as "0".But when i use a bapi BAPI_SALESORDER_CREATEFROMDAT2 for all the materials it is calculating the price and it is even displaying the unit price of that material.whether i am using the wrong bapi to get material detail or any problem.pls send me the related information regarding that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2006 10:02:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313690#M162845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-31T10:02:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with material price</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313691#M162846</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;Are you passing the values to VALUATIONAREA and VALUATIONTYPE? Unless you do that PRICE will not be calculated. You should get the values for these from your functional person.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2006 10:06:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313691#M162846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-31T10:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with material price</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313692#M162847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which export parameter are you looking at?&lt;/P&gt;&lt;P&gt;Did you see whatis there in MATERIALVALUATIONDATA-STD_PRICE??&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_MATERIAL_GET_DETAIL'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        MATERIAL                    = ls_matnrlist-MATERIAL&lt;/P&gt;&lt;P&gt;         PLANT                      = '1000'&lt;/P&gt;&lt;P&gt;         VALUATIONAREA              = '1000'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      VALUATIONTYPE               =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        MATERIAL_GENERAL_DATA       = ls_generaldata&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      RETURN                      =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      MATERIALPLANTDATA           =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        MATERIALVALUATIONDATA       = ls_MATERIALVALUATIONDATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    move ls_matnrlist-MATERIAL to ls_MATDATA-MATERIAL.&lt;/P&gt;&lt;P&gt;    move ls_generaldata-MATL_DESC to ls_MATDATA-MATL_DESC.&lt;/P&gt;&lt;P&gt;    move ls_generaldata-BASE_UOM  to ls_MATDATA-BASE_UOM.&lt;/P&gt;&lt;P&gt;    move ls_MATERIALVALUATIONDATA-MOVING_PR to ls_MATDATA-MOVING_PR.&lt;/P&gt;&lt;P&gt;    append ls_matdata to lt_matdata.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2006 10:08:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313692#M162847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-31T10:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with material price</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313693#M162848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;check the following threads.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this might be of some help.&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1638020"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aswin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2006 10:08:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313693#M162848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-31T10:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with material price</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313694#M162849</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; My problem is i could not get the material price when i run BAPI_MATERIAL_GET_DETAIL. But in BAPI_SALESORDER_CREATEFROMDAT2, I can get NetValue&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Guru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2006 10:37:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313694#M162849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-31T10:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with material price</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313695#M162850</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;The SALES ORDER BAPI internall might be passing the valuation data to the MATERIAL BAPI. But when you are calling the same you might not be passing the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note :Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2006 10:42:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313695#M162850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-31T10:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with material price</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313696#M162851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;check these links for examples:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/78/21745d51ce11d189570000e829fbbd/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/78/21745d51ce11d189570000e829fbbd/content.htm&lt;/A&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="1605159"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;keerthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2006 10:45:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313696#M162851</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-31T10:45:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with material price</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313697#M162852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u please tell me how see material price in sapgui.&lt;/P&gt;&lt;P&gt;and give me the importparameters &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Guru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2006 10:48:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313697#M162852</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-31T10:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with material price</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313698#M162853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bhogi.&lt;/P&gt;&lt;P&gt;i did it on this way and it works correct!&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;REPORT ZTEST.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;data: itab like BAPIMATDOBEW.&lt;/P&gt;&lt;P&gt;data: rt   like BAPIRETURN.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_MATERIAL_GET_DETAIL'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    MATERIAL                    = '000000000000500000'&lt;/P&gt;&lt;P&gt;    PLANT                       = '2000'&lt;/P&gt;&lt;P&gt;    VALUATIONAREA               = '2000'&lt;/P&gt;&lt;P&gt;    VALUATIONTYPE               = 'EIGEN'&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MATERIAL_GENERAL_DATA       =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    RETURN                      = rt&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MATERIALPLANTDATA           =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    MATERIALVALUATIONDATA       = itab.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Itab has the right values. Do you use the right VALUATIONTYPE. Sometimes it will be different. Look&lt;/P&gt;&lt;P&gt;at MBEW and find the right one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope i can help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2006 11:31:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313698#M162853</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-31T11:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with material price</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313699#M162854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did u try using FM MBEW_ARRAY_READ_MATNR_ALL.&lt;/P&gt;&lt;P&gt;Pass material number in the table IPRE03 and it will give u all the MBEW records.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2006 11:51:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-material-price/m-p/1313699#M162854</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-31T11:51:44Z</dc:date>
    </item>
  </channel>
</rss>

