Use this function to retrieve any remaining follow up associated with a specific feedback.
Syntax
APEX_UTIL.GET_FEEDBACK_FOLLOW_UP ( p_feedback_id IN NUMBER, p_row IN NUMBER DEFAULT 1, p_template IN VARCHAR2 DEFAULT '<br />#CREATED_ON# (#CREATED_BY#) #FOLLOW_UP#') RETURN VARCHAR2;
Parameters
Table 35-39 GET_FEEDBACK_FOLLOW_UP Parameters
Parameter | Description |
---|---|
|
The unique identifier of the feedback item. |
|
Identifies which follow-up to retrieve and is ordered by |
|
The template to use to return the follow up. Given the |
Example
The following example displays all the remaining follow-up for feedback with the ID of 123.
declare l_feedback_count number; begin select count(*) into l_feedback_count from apex_team_feedback_followup where feedback_id = 123; for i in 1..l_feedback_count loop htp.p(apex_util.get_feedback_follow_up ( p_feedback_id => 123, p_row => i, p_template => '<br />#FOLLOW_UP# was created on #CREATED_ON# by #CREATED_BY#') ); end loop; end; /
Parent topic: APEX_UTIL