This procedure enables you to submit follow up to a feedback.
Syntax
APEX_UTIL.SUBMIT_FEEDBACK_FOLLOWUP ( p_feedback_id IN NUMBER, p_follow_up IN VARCHAR2 DEFAULT NULL, p_email IN VARCHAR2 DEFAULT NULL);
Parameters
Table 35-120 SUBMIT_FEEDBACK_FOLLOWUP Parameters
Parameter | Description |
---|---|
|
ID of feedback that this is a follow up to. |
|
Text of follow up. |
|
Email of user providing the follow up. |
Example
The following example submits follow up to a previously filed feedback.
begin apex_util.submit_feedback_followup ( p_feedback_id => 12345, p_follow_up => 'I tried this on another instance and it does not work there either', p_email => 'user@xyz.corp' ); end; /
Parent topic: APEX_UTIL