tuli
06/24/2025, 3:18 PMCeligo AI
06/24/2025, 3:18 PMAI generated answer (using internal Slack threads):To pull all the custom fields ids and names from a custom record table through SuiteQL, you can use the following query:
sql
SELECT
scriptid,
name
FROM
CustomField
WHERE
recType = '<custom record internal id>'
In the above query, replace <custom record internal id>
with the internal id of your custom record. This query will return all the custom fields (both ids and names) associated with the specified custom record.
Please note that you need to have the necessary permissions to run SuiteQL queries and access the CustomField
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
06/24/2025, 3:18 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.855903566
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.845165908
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.843854785
Celigo AI
06/24/2025, 3:18 PM