Created Trigger table including extension tables

Created function to run trigger script
Created logic to pull table from catalog items / record producers
Created interceptors for Fulfillment Steps and Triggers
Cleaned forms and created policies to keep them clean
This commit is contained in:
admin
2023-01-31 09:19:12 -08:00
parent c06bff3f50
commit fa5fc665c1
142 changed files with 5461 additions and 2 deletions

View File

@ -21,6 +21,16 @@ CoreClientUtils.prototype = Object.extendsObject(global.AbstractAjaxProcessor, {
return JSON.stringify(answer);
},
getCatalogItemTargetTable: function(){
var answer = false;
var catalogItemID = this.getParameter("sysparm_catalogItemID");
if(catalogItemID){
answer = this.coreUtils.getCatalogItemTargetTable(catalogItemID);
}
return answer;
},
type: 'CoreClientUtils'
});