A script-enabled browser is required for this page to function properly.

RESET_GROUP_SELECTION Built-in

Description

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.

Syntax

PROCEDURE RESET_GROUP_SELECTION
(recordgroup_id RecordGroup);

PROCEDURE RESET_GROUP_SELECTION
(recordgroup_name VARCHAR2);

Built-in Type unrestricted procedure

Enter Query Mode yes

Parameters

recordgroup_id 
 
The unique ID that Oracle Forms assigns when it creates the group. The data type of the ID is RecordGroup.
 
recordgroup_name 
 
The name you gave to the record group when creating it. The data type of the name is VARCHAR2.

RESET_GROUP_SELECTION Examples

/*

** 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;