Sol Eun
01/22/2025, 4:33 PMSELECT
TO_CHAR(Date, 'YYYY-MM-DD HH24:MI:SS TZH:TZM') AS DateTimeWithTZ,
RecordTypeID,
BUILTIN.DF( RecordTypeID ) AS RecordType,
RecordID,
Field,
OldValue,
NewValue,
Name AS EmployeeID,
BUILTIN.DF( Name ) AS EmployeeName,
Role,
BUILTIN.DF( Role ) AS RoleName,
Context,
BUILTIN.DF( Context ) AS ContextName
FROM
SystemNote
WHERE
Date BETWEEN To_Date ( '2024-01-01', 'YYYY-MM-DD' ) AND To_Date ( '2024-09-31', 'YYYY-MM-DD' )
ORDER BY
Date DESC
And this is the response.
{
"links": {
"self": "<https://XXXXXXX.suitetalk.api.netsuite.com/services/rest/query/v1/suiteql?limit=100&offset=0>",
"next": null,
"last": null
},
"count": 0,
"hasMore": false,
"items": [],
"offset": 0,
"totalResults": 0
}
I know the data is there but somehow I am not getting any response.Mike Robbins
01/22/2025, 5:26 PMSol Eun
01/22/2025, 5:32 PMMike Robbins
01/22/2025, 5:59 PMSol Eun
01/23/2025, 4:25 AM