I have been trying to get a simple AGS to work in LSF9 Design studio. The script is running through its step properly. I have followed the various values during the executions but unable to see the field get updated.
I am running the AGS following statement to update an HR11 user field. I am just running a preview of the script but others have tried to execute it with the same result:
var vAGSCall;
vAGSCall = "?_PDL=" + strPDL + "&_TKN=ZEOO.1&_EVT=CHG&_LFN=ALL&_TDS=IGNORE" + "&_OUT=XML&_FC=Change&HEU-COMPANY=" +usrCompany + "&HEU-EMP-APP=O&HEU-EMPLOYEE=" + usrEmployee + "&HEU-FIELD-KEY=55&HEU-A-FIELD=Y&EOT=TRUE"
var vAGSInfo = portalWnd.httpRequest(portalWnd.AGSPath + vAGSCall);
var vObjAGSXML = new top.DataStorage(vAGSInfo);
I have followed it through and multiple alerts have tracked the data comming in but nothing is being posted???
I am missing something but what????????