Mike Casey
03/11/2025, 7:24 PMCeligo AI
03/11/2025, 7:24 PMAI generated answer (using internal Slack threads):To get the
quantityreceived
field for a transaction line using SuiteQL, you can use the quantityshiprecv
field in your SuiteQL query. This field represents the total quantity received for a line item.
Here is a sample SuiteQL query:
sql
SELECT quantityshiprecv
FROM transaction
WHERE type = 'PurchaseOrder' AND mainline = FALSE
This query will return the quantityshiprecv
for each line item in a Purchase Order.
Please note that the quantityshiprecv
field is in base units. If you want to convert it to transaction units, you can use the following formula:
sql
{quantityshiprecv} / ({quantity} / {quantityuom})
This formula divides the quantityshiprecv
by the ratio of quantity
to quantityuom
to convert the quantity received to transaction units.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
03/11/2025, 7:24 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.834736168
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.833497
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.830033779
Celigo AI
03/11/2025, 7:24 PM