Ryan Longenecker
11/16/2020, 8:52 PMSandii
11/16/2020, 8:53 PM/**
* @NApiVersion 2.x
* @NScriptType WorkflowActionScript
* @author
*/
define([], function () {
var exports = {};
/**
* @description Entry point for the Workflow Action
* @param context {Object}
* @param context.newRecord {Record} New record
* @param context.oldRecord {Record} Old record
* @return {*} Any value can be returned and utilized in workflow
* @function onAction
* @static
**/
exports.onAction = function onAction(context) {
}
return exports;
});KevinJ of Kansas
11/16/2020, 8:53 PMRyan Longenecker
11/16/2020, 8:53 PMRyan Longenecker
11/16/2020, 8:54 PMSandii
11/16/2020, 8:56 PMRyan Longenecker
11/16/2020, 8:57 PMSandii
11/16/2020, 8:58 PMRyan Longenecker
11/16/2020, 9:01 PM