Kevin Cook
02/09/2021, 6:17 PMSandii
02/09/2021, 6:21 PMMainLine=F
), and have a formula column that returns 0 when fully committed and 1 when not. Then group by document number and sum on that formula. That would tell you how many lines are not fully committed.Sandii
02/09/2021, 6:23 PMCASE WHEN {quantity} - NVL({quantitycommitted},0) > 0 THEN 1 ELSE 0 END
, that's a start; you might have problems with lines that are completely filled already, could add more conditions to that. Depends what your sales orders are like and hopefully restricting the base data set down more in the crieria.Kevin Cook
02/09/2021, 6:30 PMKevin Cook
02/09/2021, 6:30 PM