Hello Guys, How I can show Back Ordered Items Qty ...
# suiteanalytics
n
Hello Guys, How I can show Back Ordered Items Qty using a Sales Order saved search?
n
{quantity}-NVL({quantityshiprecv},0)
n
Thanks @Netsuite Tragic
Another query I have, I want to show invoice data and fulfillment data based on SO saved search but it should not be more number of lines than no of Items on SO!
this is right now giving me with gaps and increasing no of lines! can we resolve it ?
query for Qty Fulfilled: CASE WHEN {applyinglinktype} = ‘Receipt/Fulfillment’ THEN {applyingtransaction.quantity} END query for Qty invoiced: CASE WHEN {applyinglinktype} = ‘Order Bill/{#Invoice#}’ THEN {applyingtransaction.quantity} END
kindly help here!! Thanks in Adv
n
use grouping and Sum to reduce your lines ie Group by Sales Order document number. Sum by Fulfilled Qty etc
n
okay, I’ll check that! Thanks a lot