cancel
Showing results for 
Search instead for 
Did you mean: 

How to get price used on issue for production in SAP B1?.

former_member183402
Participant
0 Kudos

Hi all,

I want to do a query of production process where I will select quantity and price used on issue for production, I want to know how to get that price because I do know if it has table where it is saved or if it is calculations.

How can I do that in SAP B1?

Please anyone can help me.

Accepted Solutions (1)

Accepted Solutions (1)

agustin_marcoscividanes
Active Contributor
0 Kudos

Hi

you can use stockprice or inmprice fields.

Kind regards

Agustín

former_member183402
Participant
0 Kudos

Thank you so much Agustin, that's correct.

Answers (4)

Answers (4)

kothandaraman_nagarajan
Active Contributor
0 Kudos

Above query will show price regardless of issuing method.

former_member183402
Participant
0 Kudos

I mean, the above query does not show the price of items uses FIFO as valuation method.

former_member183402
Participant
0 Kudos

IGE1 table saves only price of item with standard cost (item cost), it does not save item with FIFO valuation method.

Former Member
0 Kudos

Hi,

Maybe u need to check Item Costing for the price

Regards,

-Eric-

kothandaraman_nagarajan
Active Contributor
0 Kudos

Hi,

Try this,

SELECT T0.[DocNum], T0.[DocDate], T1.[ItemCode], T1.[Dscription], T1.[Quantity], T1.[Price] FROM OIGE T0 INNER JOIN IGE1 T1 ON T0.[DocEntry] = T1.[DocEntry] WHERE T1.[BaseRef] = 154 (This is your production order number)

Regards,

Nagarajan

former_member183402
Participant
0 Kudos

Hi Nagarajan,

That query is displaying only price for item uses backflush method, it does not display price for item uses manual issue method.

How to display all prices?

agustin_marcoscividanes
Active Contributor
0 Kudos

Hi

the table is IGE1, and you have to filter by:

basetype = '202' and baseentry = yourworkorder.docentry

Select quantity and price.

Kind regards

Agustín

former_member183402
Participant
0 Kudos

Hi Agustin,

Sorry, what is yourworkorder.docentry?