Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

MATERIAL PRICE

Former Member
0 Kudos

HI

in MATERILAVALUTIONDATA i can get STD_PRICE but it is total different from NET_PRICE in BAPI_SALESORDER_GETLIST.

<u><i><b>Can u please tell me the way how to know material price .</b></i></u>

regards

Guru

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

Std price and net price are different concept: the std price is the price of material, the net one is the std less the discounts.

You can know the std price reading the condition record (KONP table)

Max

9 REPLIES 9

Former Member
0 Kudos

Hi

Std price and net price are different concept: the std price is the price of material, the net one is the std less the discounts.

You can know the std price reading the condition record (KONP table)

Max

Former Member
0 Kudos

Hi,

In order to get the material price, yuo can go to the table MBEW.

In this table, if you pass the material no in the matnr field and plant in bwkey field, you can get the price from the fields :

VERPR - Moving Average Price

STPRS - Standard price.

Lakshminarayanan.

Mark all helpful answers for reward points.

Former Member
0 Kudos

Hello,

You can use FM MBEW_READ_WITH_MATNR to get the price for a material. The price which you want is maintained in material master and this is std price. The net price which u are getting in sales order is after execution of the pricing procedure in which discounts/taxes etc are part. So you need to decided which price are you looking out for.

0 Kudos

hi,

i am a javaprogramer.i have so many doubts in execting FunctionModules.

<i><b>some FMs are starting with BAPI_.........,some are starting with SO_........,some are starting with MBEW_....

please tell me wht r the differences.</b></i>

regards

Guru

Former Member
0 Kudos

Hi,

i dont think u can call any other FM's except FM's that start with BAPI_ ( BAPI function modules) from a java environment because BAPI are used to fetch,put data from a non-sap system (like a java app) to sap.

Other FM's like MBEW_* are just normal function modules which are used within SAP environment, so cannot use them in ur case.

0 Kudos

hi,

but, i have used FM :SO_USER_READ_LIST to get the Users in sap. by calling (<i><b>in my javaprogram(JCO))</b></i>this FM i could get the users in sap.if any other way please tell.

regards

Guru

Former Member
0 Kudos

Hello Guruvulu,

For accessing any data from outside u need to call in FM which are remote enabled, i.e in attribute of the FM the radio button for remote enabled function should be checked. If this is enable then u can call this FM from outside SAP environment and BAPI is no exception.

0 Kudos

hi

Attribute of MBEW_READ_WITH_MATNR radio button for remote enabled is not checked .then how to get the VALUTIONAREA of material .can u tell me any bapi which is remote enabled .

<u><i><b>my requirement is to get the material price by using JCO</b></i></u>

regards

Guru

Former Member
0 Kudos

What u can do is use FM MATERIAL_READ_PLANTS pass material number. It will give u list of plant or valuation area. Pass this to BAPI_MATERIAL_GET_DETAIL and u will get the price.