Passing more than 10 values with apex.server.process
You may be familiar with the apex.server.process function exposed by Apex’s Javascript API. It allows you to asynchronously interact with Apex Application Processes.
A simple example would be.
Apex Application Process
HTP.p('You passed "'||APEX_APPLICATION.g_x01 ||'" as the value for x01. '); HTP.p('You passed "'||APEX_APPLICATION.g_x02 ||'" as the value for x02. '); HTP.p('You passed "'||APEX_APPLICATION.g_x03 ||'" as the value for x03. ');
Javascript
apex.server.process ( "MY_APP_PROCESS" , { x01: 'my first custom value' , x02: 'mysecond custom value' , x03: 'my third custom value' } , { dataType: 'text' ,success: function(pData){alert(pData)} } );
If you were to create the Application Process “MY_APP_PROCESS” and run the Javascript above, you’d see an alert popup:
——–
You passed “my first custom value” as the value for x01.
You passed “mysecond custom value” as the value for x02.
You passed “my third custom value” as the value for x03.
———
You can use use x01 through to x10 to pass up to 10 parameters to your application process. What about if you want to pass more than 10 parameters, though? To do this, you first need to create a number of Application Items. You might like to call them :G_11, :G_12, :G_13 etc..
You can then set the values of these items in session state (and hence make them available in your Application Process) by doing the following:
apex.server.process ( "MY_APP_PROCESS" , { x01: 'my first custom value' , x02: 'mysecond custom value' , x03: 'my third custom value' , p_arg_names: ['G_11','G_12','G_13'] , p_arg_values: ['My 11th custom value','My 12th custom value','My 13th custom value'] } , { dataType: 'text' , success: function(pData){alert(pData)} } );
Referencing these values inside your Application Process is simply a case of using Bind Variable syntax, e.g.:
HTP.p('You passed "'||APEX_APPLICATION.g_x01 ||'" as the value for x01. '); HTP.p('You passed "'||APEX_APPLICATION.g_x02 ||'" as the value for x02. '); HTP.p('You passed "'||APEX_APPLICATION.g_x03 ||'" as the value for x03. '); HTP.p('You passed "'||:G_11 ||'" as the value for G_11. ');