Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
How to convert Customers to Vendors in User Event script?
Hello Gurus,
I'm trying to transform customer to vendor record using the record.transform API in the UserEvent script, here is my code snippet:
const afterSubmit = (scriptContext) => {
if(
scriptContext.type === scriptContext.UserEventType.CREATE
||
scriptContext.type === scriptContext.UserEventType.EDIT
) {
try {
const vendorRec = record.transform({
fromType: record.Type.CUSTOMER,
fromId: scriptContext.newRecord.id,
toType: record.Type.VENDOR
});
vendorRec.save();
} catch (e) {
log.debug({
title: 'Customer to Vendor UE',
details: `Unable to convert customer to vendor ${e.message}`
});
}
}
}
But I'm getting in the script execution log:
Unable to convert customer to vendor: You may only change the name from the CustJob version of this record.
Tagged:
0