Tiina Böös
08/08/2025, 12:07 PMCeligo AI
08/08/2025, 12:07 PMAI generated answer (using internal Slack threads):To get item's user notes using SuiteQL, you would need to query the
transaction
table and join it with the note
table. The note
table contains the user notes. Here is a sample SuiteQL query:
sql
SELECT T.id, N.note
FROM transaction T
JOIN note N ON T.id = N.transaction
WHERE T.id = YOUR_ITEM_ID
Replace YOUR_ITEM_ID
with the actual ID of the item you want to get the user notes for.
Please note that the note
table might not contain all the user notes you are looking for, as not all sublists support SuiteScript. You can check the available sublists that support SuiteScript in the NetSuite Help Center under the section 'Sublist Types'.
******
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
08/08/2025, 12:07 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.791397512
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.781043708
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.779285371
Celigo AI
08/08/2025, 12:07 PM