cancel
Showing results for 
Search instead for 
Did you mean: 

unitprise table name

Former Member
0 Kudos

hello

wats the name of unit prise table in item master data?

ill definately give 10 pts if u reply accurate.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Price of an item is based on the pricelist that are configured in B1.

Pricelists are stored in ITM1 table

USe the following query


SELECT T0.[ItemCode], T2.[ItemName], T1.[ListName],  T0.[Currency],T0.[Price] FROM ITM1 T0  INNER JOIN OPLN T1 ON T0.PriceList = T1.ListNum INNER JOIN OITM T2 ON T0.ItemCode = T2.ItemCode

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Krishna,

Depending on your inventory valuation, you can have different views of unit price.

ITM1 hold all price lists defined by you. However, that is mostly for sales item only. If the item is not for sales, then the Last Purchase Price in OITM and Average Price in OITW might be more relevant to your question.

You can run a query select * from itm1 where price > 0 to see how many of your item prices have been defined.

Thanks,

Gordon

lorna_real
Active Participant
0 Kudos

Hello Krishna,

It is AvgPrice from OITM table.

Regards,

Lorna Real

Former Member
0 Kudos

Look at ITM1.Price. It displays the prices for the item in the different price lists. When you choose a price list on the Item master data screen this price will be displayed in the Unit Price field.