Matt L
09/27/2022, 8:37 PMDavid B
09/27/2022, 10:07 PM(( transaction line type = item AND
type = Transfer Order ) OR
type = {one of} Sales Order, Work Order )
Or you can use a 'formula (numeric)' field with a formula like
CASE WHEN {type} = 'transfer order' AND {transaction line type} = 'item' THEN 1 ELSE 0 END
(equal to 1)
☝️ untested pseudo codeDavid B
09/27/2022, 10:07 PMMatt L
09/27/2022, 10:55 PM