cancel
Showing results for 
Search instead for 
Did you mean: 

How to get Item Price Based on Valuation Method

Former Member
0 Kudos

Hello All,

I want to get the price of an item based on its Valuation method (FIFO,Moving Average) for calculation .

Is their any Objects for getting the Item Price Based on Valuation Method or any other way around for getting the

price.

Thanks & Regards,

Amit

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello,

You Can receive the Moving Average price of an Item :

MovingAveragePrice property returns the Moving average price

AvgStdPrice property returns the standard price

sample:

Dim oItem As SAPbobsCOM.Items = oCompany.GetBusinessObject(BoObjectTypes.oItems)
        oItem.GetByKey("ITEMCODE")

        oItem.MovingAveragePrice 
        oItem.AvgStdPrice

Best of my known in 2007 there is no interface for FiFo prices.

You can use OINM table to query the FiFo prices

Regards,

J

Answers (0)