Eric Schultz
10/07/2025, 4:36 PMCeligo AI
10/07/2025, 4:36 PMAI generated answer (using internal Slack threads):To get the next transaction record using a query, you can use the
nextlinks
and previouslinks
fields from the transaction record. These fields exist on the line level as well.
Here is an example of how you might use these fields in a SuiteQL query:
sql
SELECT nextlinks, previouslinks
FROM transaction
WHERE tranid = 'your_transaction_id'
This will return the nextlinks
and previouslinks
for the transaction with the specified tranid
.
Please note that this method might not work for all transaction types. Some types might not show up for some reason. Also, certain fields like document fields might still be missing.
******
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, 4:36 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.796814
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.791259766
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.784484923
Celigo AI
10/07/2025, 4:36 PM