Previous
Previous
 
Next
Next


DEBUG_PROCESS Procedure

This procedure writes the data of the process meta data to the debug output if debugging is enabled.

Syntax

APEX_PLUGIN_UTIL.DEBUG_DYNAMIC_ACTION (
    p_plugin         IN apex_plugin.t_plugin,
    p_process        IN apex_plugin.t_process);

Parameters

Table: DEBUG_PROCESS Parameters describes the parameters available in the DEBUG_PROCESS procedure.

DEBUG_PROCESS Parameters

Parameter Description

p_plugin

This is the p_plugin parameter of your plug-in function.

p_process

This is the p_process parameter of your plug-in function.


Example

This example shows how to collect helpful debug information during the plug-in development cycle to see what values are actually passed into the execution function of the plug-in.

apex_plugin_util.debug_process (
    p_plugin         => p_plugin,
    p_process        => p_process);