748: select legislation_code
749: , rule_type
750: , rule_mode
751: , rowid
752: from hr_s_legislation_rules;
753:
754: stu_rec stu%ROWTYPE;
755:
756: PROCEDURE remove
759: -- Remove a row from either the startup tables or the installed tables
760:
761: BEGIN
762:
763: delete from hr_s_legislation_rules
764: where rowid = stu_rec.rowid;
765:
766: END remove;
767: