Artur Pacagnan
10/22/2025, 7:40 PMCeligo AI
10/22/2025, 7:40 PMAI generated answer (using internal Slack threads):To create a query of the inventory detail tab and table in a Lot Numbered Assembly using SuiteSQL, you can use a JOIN statement to connect the necessary tables. However, please note that the exact tables and fields will depend on your specific NetSuite setup. Here is a basic example of how you might structure your SuiteSQL query:
sql
SELECT
assemblyitem.name AS 'Assembly Item',
inventorynumber.inventorynumber AS 'Lot Number',
inventorydetail.inventorynumber AS 'Inventory Detail'
FROM
assemblyitem
JOIN
inventorydetail ON assemblyitem.id = inventorydetail.assemblyitem
JOIN
inventorynumber ON inventorydetail.inventorynumber = inventorynumber.id
In this example, 'assemblyitem' is the table for the assembly items, 'inventorynumber' is the table for the lot numbers, and 'inventorydetail' is the table for the inventory details. The JOIN statements connect these tables based on their respective IDs.
Please replace the table and field names with the ones that correspond to your specific NetSuite setup. Also, you might need to adjust the query to include additional fields or conditions based on your requirements.
******
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/22/2025, 7:40 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.840454102
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.838867188
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.837707639
Celigo AI
10/22/2025, 7:40 PMArtur Pacagnan
10/22/2025, 7:41 PMCeligo AI
10/22/2025, 7:42 PMCeligo AI
10/22/2025, 7:42 PMCeligo AI
10/22/2025, 7:42 PM