This procedure writes the data of the dynamic action 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_dynamic_action IN apex_plugin.t_dynamic_action);
Parameters
Table 27-1 DEBUG_DYNAMIC_ACTION Parameters
| Parameter | Description | 
|---|---|
| 
 
  | 
 This is the   | 
| 
 
  | 
 This is the   | 
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 rendered function or Ajax callback function of the plug-in.
apex_plugin_util.debug_dynamic_action (
    p_plugin         => p_plugin,
    p_dynamic_action => p_dynamic_action );
Parent topic: APEX_PLUGIN_UTIL