Bryan Miller
10/07/2025, 6:58 PMCeligo AI
10/07/2025, 6:58 PMAI generated answer (using internal Slack threads):To source the 'From Location' on a Transfer Order in SuiteQL, you would need to join the transaction lines that contain this information. Unfortunately, there isn't a direct 1-1 table join that you can use to find the 'From Location' as it is not directly associated with the main line of the transaction. Here is a general example of how you might structure your SuiteQL query:
sql
SELECT
T.id,
T.tranid,
L.id AS line_id,
L.inventorylocation AS from_location
FROM
transaction T
JOIN
transactionline L ON T.id = L.transaction
WHERE
T.type = 'Transfer Order'
In this example, T
represents the transaction
table and L
represents the transactionline
table. The inventorylocation
field on the transactionline
table represents the 'From Location' on a Transfer Order.
Please note that this is a simplified example and you may need to adjust the query to fit your specific needs.
******
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
10/07/2025, 6:58 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.840332031
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.831420898
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.820068359
Celigo AI
10/07/2025, 6:58 PM