Milcho Dimkov
04/01/2026, 1:04 PMCeligo AI
04/01/2026, 1:04 PMAI generated answer (using internal Slack threads):Based on the conversations, it seems like you are trying to find the currencies assigned to a customer record using SuiteQL. Unfortunately, the conversations do not provide a direct SuiteQL statement for this specific requirement. However, you can modify the provided SuiteQL statement to suit your needs. Here is a general example of how you might structure your SuiteQL query:
sql
SELECT
Customer.ID AS CustomerID,
BUILTIN.DF( Customer.Entity ) AS CustomerName,
Customer.Currency AS CustomerCurrency
FROM
Customer
WHERE
Customer.ID = 'YourCustomerID'
Please replace 'YourCustomerID' with the actual ID of the customer record you are interested in. This query will return the ID, name, and currency of the customer record.
******
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/01/2026, 1:05 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.822357178
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.819854736
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.813507199
Celigo AI
04/01/2026, 1:05 PM