Hi
Does anyone know how to Limit the reasons that are displayed on the perosnal action page to a sub set?
I know they code are extratced by a DME call in paactionssdv.js
function GetPcodes(selectValue) { if(pCodes.length && lastPcodeSelect==selectValue) Perform(pCodes) else { pCodes = new Array(); lastPcodeSelect = selectValue var object = new DMEObject(authUser.prodline,"PCODES") object.out = "JAVASCRIPT" object.index = "pcoset1" object.field = "code;description" object.key = String(selectValue); object.cond = "Active"; //object.select = "CODE="+'JOB' object.max = "600" object.debug = false; //object.sortasc = "description" DME(object,"jsreturn") } }
Can i put somehting like //object.select = "CODE="+'JOB' to limit the code extracted.
Any help will be appreciated.