Deselects any selected rows in the given group. Use this Built-in to deselect all record group rows that have been programmatically marked as selected by executing SET_GROUP_SELECTION on individual rows.
PROCEDURE RESET_GROUP_SELECTION
(recordgroup_id RecordGroup);
PROCEDURE RESET_GROUP_SELECTION
(recordgroup_name VARCHAR2);
Built-in Type unrestricted procedure
Enter Query Mode yes
/*
** Built-in: RESET_GROUP_SELECTION
** Example: If the user presses the (Cancel) button, forget
** all of the records in the 'USERSEL' record
** group that we may have previously marked as
** selected records.
** Trigger: When-Button-Pressed
*/
BEGIN
Reset_Group_Selection( 'usersel' );
END;