on 2020 Jul 10 8:38 AM
Hello,
Is there any field which content the link from Production order to Goods receipt and to Goods Issue - bakcflush (resource)? In relationship map there is an arrow links this two object so system obviously knows about it so I suppose it has to be in some table/view but could not find it.
SAP B1 9.3 (HANA)
Request clarification before answering.
Hi All,
A field in Goods Issue is available to link production goods receipts only for Blackflush.
Filed in "RelatedEnt", and "RelatedTyp" from OIGE
You can use the below query to link the Good issue to the Production good receipt
SELECT A."RelatedEnt", A."RelatedTyp", B."DocNum" FROM OIGE A
INNER JOIN OIGN B ON B."DocEntry"=A."RelatedEnt" AND B."ObjType"=A."RelatedTyp"
WHERE A."DocEntry"=1322
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi All,
Issue for production have related object and related entry of receipt from production,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Why you can't get exact qty with the receipt? Did you create any query?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Try this query for Receipt from production and same way try for Issue for production,
SELECT T0.[DocNum], T0.[ItemCode], T0.[Status], T0.[Type], T2.[DocNum], T2.[DocDate], T1.[ItemCode], T1.[Quantity] FROM OWOR T0 LEFT JOIN IGN1 T1 ON T1.[BaseEntry] = T0.DocNum INNER JOIN OIGN T2 ON T1.[DocEntry] = T2.[DocEntry] WHERE T1.[BaseType] = 202 and T0.[ItemCode] = T1.[ItemCode]
Regards,
Nagarajan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
10 | |
6 | |
5 | |
4 | |
4 | |
4 | |
4 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.