Discussions
format Datetime
How to format a 2024/01/29 09:26:00 am value with the N/format module. INVALID_FLD_VALUE is displayed when writing. You entered an invalid field value for the following fields: 01/29/2024 09:16:20 am: custrecord_quote_update_time; ID:
Resolve the error with the following code: format.format({
value: new Date() ,
type: format.Type.DATETIME,
timezone: format.Timezone.ASIA_HONG_KONG
});
If the creation time is in the morning, the update time is in the afternoon and cannot be updated into the afternoon time;
Thank you.