InterviewSolution
| 1. |
How To Read The Run Control Parameters In Ae? |
|
Answer» There are many ways of reading run-control parameters in AE, most COMMONLY used are:
%SELECT (EMPLID) /*This will PASS value to State record*/ Select EMPLID from PS_AERUNCONTROL where PROCESS_INSTANCE = %PROCESS_INSTANCE and OPRID= %OPRID
&SQL = “Select EMPLID from PS_AERUNCONTROL Where PROCESS_INSTACNE = RECORD.PROCESS_INSTANCE and OPRID = %BIND (PROCESS_INSTANCE) There are many ways of reading run-control parameters in AE, most commonly used are: %Select (EMPLID) /*This will pass value to State record*/ Select EMPLID from PS_AERUNCONTROL where PROCESS_INSTANCE = %PROCESS_INSTANCE and OPRID= %OPRID &SQL = “Select EMPLID from PS_AERUNCONTROL Where PROCESS_INSTACNE = RECORD.PROCESS_INSTANCE and OPRID = %Bind (PROCESS_INSTANCE) |
|