cancel
Showing results for 
Search instead for 
Did you mean: 

Tracking supplier Back orders

Former Member
0 Kudos

Hi,

I use SAP Business One, Can anyone help me how to track my back orders from supplier?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Purchasing A/P -> Purchasing Reports -> Open Items List.

In this window, choose the Purchase Order in dropdown. This lists you the open POs.

Answers (2)

Answers (2)

former_member187989
Active Contributor
0 Kudos

Below query will enable to track back order for the supplier.

SELECT  T0.[CardName] AS 'Vendor Name', T0.[DocNum] AS 'Purchase Order No.', T0.[DocDate] as 'Date',T1.[ItemCode], T1.[Dscription] as 'Item Description', T1.[OpenQty] as 'Back Order Qty' FROM OPOR T0  INNER JOIN POR1 T1 ON T0.DocEntry = T1.DocEntry AND T1.LineStatus='O'
WHERE T0.[DocDate] 
BETWEEN '[%0]' AND '[%1]'  AND T0.[DocType] = 'I' 
ORDER BY T0.[CardName]

Jeyakanthan

former_member187989
Active Contributor
0 Kudos

Purchasing A/P>Purchase Reports>Open Item List------>Select Purchase Order

This will show our supplier back orders.

Jeyakanthan