59.20 DELETE_FEEDBACK_ATTACHMENT Procedure
This procedure deletes the attachment of a feedback with the specified ID.
Syntax
APEX_UTIL.DELETE_FEEDBACK_ATTACHMENT (
p_feedback_id IN NUMBER )
Parameters
Parameter | Description |
---|---|
p_feedback_id |
The ID of the feedback. |
Example
The following example deletes the attachment of a feedback with the specified ID.
BEGIN
apex_util.delete_feedback_attachment (
p_feedback_id => 12345 );
END;
Parent topic: APEX_UTIL