darrenhillconsulting
08/19/2024, 5:14 PMCeligo AI
08/19/2024, 5:14 PMAI generated answer (using internal Slack threads):To get the foreign amount for each ItemFulfillment line using SuiteQL, you would need to join the
TransactionLineTransactionforeignamountsql
SELECT 
    TransactionLine.Transaction,
    TransactionLine.foreignamount
FROM 
    TransactionLine
INNER JOIN 
    Transaction as IF_PARENT on (TransactionLine.transaction = Transaction.ID)
WHERE 
    Transaction.type = 'ItemFulfillment'TransactionforeignamountTransactionLineTransactionINNER JOINTransactionLineTransactiontransactionCeligo AI
08/19/2024, 5:15 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.807162702
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.805504322
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.798368037
Celigo AI
08/19/2024, 5:15 PM