Nathan
09/23/2020, 5:00 PMshipaddresslist
/`billaddresslist` to an existing customeraddress id for that entity and nothing else, then save. As a result, null
is the value stored there, and a new custom address subrecord is created that is empty, with only the country populated. (new shippingaddress_key
/`billingaddress_key` id).
The transaction and customer records are not scripted (no user or client scripts, no workflows, default form - including address form). I don't have address validation.
I do have SuiteTax and TaxJar, for what it's worth, but I don't think it's relevant.
Thanks.battk
09/23/2020, 5:10 PMbattk
09/23/2020, 5:11 PMNathan
09/23/2020, 5:14 PMvalue
of an option.battk
09/23/2020, 5:15 PMNathan
09/23/2020, 5:15 PMNathan
09/23/2020, 5:16 PMbattk
09/23/2020, 5:17 PMbattk
09/23/2020, 5:17 PMbattk
09/23/2020, 5:18 PMNathan
09/23/2020, 5:18 PMNathan
09/23/2020, 5:26 PM/**
* @NApiVersion 2.x
* @NScriptType Restlet
*/
define([
'N/record',
'exports'
], function (
record,
exports
) {
exports.put = function () {
var netsuite_record = record.load({type: 'estimate', id: 9226});
netsuite_record.setValue({fieldId: 'billaddresslist', value: 11731});
netsuite_record.save();
};
});
Nathan
09/23/2020, 5:26 PMLuiz Morais
09/23/2020, 5:43 PMNathan
09/23/2020, 6:20 PMisDynamic: true
to load options. No luck.Nathan
09/24/2020, 7:08 PMnewRecord
during beforeLoad
event, it still has previous good data. When I view the data during beforeSubmit
event, it has the updated bad data.
Still, this seems to point to a script affecting it, but none are deployed. :(battk
09/24/2020, 7:10 PMNathan
09/24/2020, 7:10 PMbattk
09/24/2020, 7:10 PMNathan
09/24/2020, 7:13 PMNathan
09/24/2020, 7:13 PMNathan
09/24/2020, 7:14 PMbattk
09/24/2020, 7:14 PMNathan
09/24/2020, 7:15 PMbattk
09/24/2020, 7:15 PMNathan
09/24/2020, 7:19 PMNathan
09/24/2020, 7:21 PMbattk
09/24/2020, 7:24 PMNathan
09/24/2020, 7:25 PMbattk
09/24/2020, 7:25 PMbattk
09/24/2020, 7:25 PMNathan
09/24/2020, 7:36 PM