Blog / Oracle Application Blog
Apex.server.process
calls a PL/SQL on-demand process defined on page or application level.
Apex.server.process is an feature available in Oracle APEX4.2
and above. This is an Asynchorous Process.
Format:apex.server.process( pAjaxIdentifier,
pData, pOptions )
Use the value
returned by PL/SQL package apex_plugin.get_ajax_identifier to identify
your plug-in.
f01 – f20).
Object which can optionally be used to set additional options
used by the AJAX
Step:1
Dynamic Actions using Execute Javascript code.
On-demand process in apex.server.process with parameters.
apex.server.process(“t1”,{x01:p_item_value},
{dataType: “text”,
Success: function(pData){alert(pData)
$x(“f03_”+new1).value=pData}});
Parameter:
Scalar Parameter- x01:p_item_value
Application process return value will be assigned to pData.
pData is assigned to tabular form column value(“f03_”+new1).
Change the values in tabular form and next field will
get displayed as dynamically.





