depthless
05/06/2022, 5:08 PMtdietrich
05/06/2022, 10:55 PMSELECT TOP 10 * FROM CustomSegment
-- Use this to get the ScriptID.
-- In my case, CUSTOMRECORD_CSEG_REGION is the ScriptID.
SELECT TOP 10 * FROM CustomRecordType WHERE InternalID = 275
-- The ScriptID is the name of the custom table with the segment's values.
SELECT TOP 10 * FROM CUSTOMRECORD_CSEG_REGION
Hope that helps. Have a great weekend!depthless
05/09/2022, 1:43 PM