59.150 SUBMIT_FEEDBACK_FOLLOWUP Procedure

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

Parameter Description
p_feedback_id ID of feedback that this is a follow up to.
p_follow_up Text of follow up.
p_email 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;
/