Leonardo Pereira
06/03/2025, 2:42 PMCeligo AI
06/03/2025, 2:42 PMAI generated answer (using internal Slack threads):To find the deposit date field using SuiteQL, you would need to perform a query on the transaction record. However, the deposit date is not directly available on the transaction record. You would need to use a join to get this information. Here is a sample SuiteQL query that might help:
sql
SELECT T.id, T.type, T.trandate, T.memo, T.status, S.depositdate
FROM transaction T
LEFT JOIN transaction S ON T.id = S.appliedtotransaction
WHERE T.type = 'Deposit'
In this query, we are joining the transaction table with itself to get the deposit date. The 'appliedtotransaction' field links the deposit to the transaction it was applied to. Please note that this is a simplified example and you might need to adjust it according to 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
06/03/2025, 2:42 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.814453959
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.809065044
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.809055746
Celigo AI
06/03/2025, 2:42 PM