Deleting Rows from a Record Group
To delete rows from existing groups:
- Use the DELETE_GROUP_ROW procedure.
The following example deletes the third row in the group named prod_group:
Delete_Group_Row('prod_group',3);
To delete all rows:
- Pass in the constant ALL_ROWS:
Delete_Group_Row('prod_group',ALL_ROWS);
Note: You cannot delete rows from a static record group.
Related topics
About record group Built-in subprograms
About manipulating a record group at runtime
Performing operations on rows
DELETE_GROUP Built-in