Join Slack
Powered by
function copyAssigneeToCompany(rec_type, rec_id) {...
# suitescript
m
mcgrath
03/27/2019, 12:45 AM
function copyAssigneeToCompany(rec_type, rec_id) { var currentCase = nlapiLoadRecord(rec_type, rec_id); var assignedID = currentCase.getFieldValue('assigned'); currentCase.setFieldValue('company', assignedID); nlapiSubmitRecord(currentCase); }
Open in Slack
Previous
Next