Search This Blog

Wednesday, September 16, 2009

Calling an Application Engine from PeopleCode

Use the code below to call the app engine through PeopleCode

&MYRECORD = CreateRecord(RECORD.MY_INIT_VALUES);
&MYRECORD.FIELD1.Value = "123abc"; /* here you are setting the initial values needed by your application engine */
CallAppEngine("YouAppEngProg", &MYRECORD);

No comments:

Post a Comment