Previous |
Next |
This procedure allows you to submit followup 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: SUBMIT_FEEDBACK_FOLLOWUP Parameters describes the parameters available in the SUBMIT_FEEDBACK_FOLLOWUP
procedure.
SUBMIT_FEEDBACK_FOLLOWUP Parameters
Parameter | Description |
---|---|
|
ID of feedback that this is a followup to |
|
Text of followup |
|
Email of user providing the followup |
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; /