Jeniffer
04/09/2025, 10:40 PMCeligo AI
04/09/2025, 10:40 PMAI generated answer (using internal Slack threads):To get Inventory Adjustments records through SuiteAnalytics connect service, you can use the
transaction
table in your SQL query. The transaction
table contains all the transactions in NetSuite, including Inventory Adjustments.
Here is a sample SQL query that you can use to get the Inventory Adjustments records:
sql
SELECT * FROM transaction WHERE type = 'Inventory Adjustment'
This query will return all the fields from the transaction
table where the type of the transaction is 'Inventory Adjustment'. You can replace the '*' with the specific fields that you want to retrieve.
Please note that the actual field names in the transaction
table might be different depending on your NetSuite setup. You can use the SHOW COLUMNS FROM transaction
SQL command to get a list of all the field names in the transaction
table.
******
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
04/09/2025, 10:41 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.836479187
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.834062099
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.829863489
Celigo AI
04/09/2025, 10:41 PM