DBA Data[Home] [Help]

APPS.GR_SAFETY_COMBINATIONS_PKG dependencies on GR_SAFETY_COMBINATIONS_S

Line 89: (gr_safety_combinations_s.nextval,

85: last_updated_by,
86: last_update_date,
87: last_update_login)
88: VALUES
89: (gr_safety_combinations_s.nextval,
90: p_safety_phrase_code,
91: p_combination_group_number,
92: p_safety_phrase_code_combo,
93: p_display_order,

Line 102: SELECT gr_safety_combinations_s.currval

98: p_last_update_login);
99:
100: /* Get the assigned sequence number */
101:
102: SELECT gr_safety_combinations_s.currval
103: INTO l_current_seq
104: FROM dual;
105:
106: /* Now get the row id of the inserted record */

Line 789: FROM gr_safety_combinations sc

785:
786: CURSOR c_get_combo_rowid
787: IS
788: SELECT sc.rowid
789: FROM gr_safety_combinations sc
790: WHERE sc.combination_sequence_number = p_combination_sequence;
791: ComboRecord c_get_combo_rowid%ROWTYPE;
792:
793: BEGIN