Hey everyone. We've got a script that consumes info from an integrated solution; it brings over line level data into a custom record. On the import file, we've got columns 12 and 13 with dates... these dates come to us as YYYY-MM-DD, but NetSuite is seemingly not a fan of that and has been ignoring the dates ... so we've tried to use the FormatDate function for those particular columns, but still aren't seeing the data imported.
Do you have any suggestions on how to resolve?
// Start Date
pObj.custrecord_promo_start_date = formatDate(rows[i][12]);
// End Date
pObj.custrecord_promo_end_date = formatDate(rows[i][13]);