DBA Data[Home] [Help]

APPS.GHR_CIN_INS dependencies on GHR_COMPL_INCIDENTS

Line 87: -- Insert the row into: ghr_compl_incidents

83: p_rec.object_version_number := 1; -- Initialise the object version
84: --
85: --
86: --
87: -- Insert the row into: ghr_compl_incidents
88: --
89: insert into ghr_compl_incidents
90: (compl_incident_id
91: ,compl_claim_id

Line 89: insert into ghr_compl_incidents

85: --
86: --
87: -- Insert the row into: ghr_compl_incidents
88: --
89: insert into ghr_compl_incidents
90: (compl_incident_id
91: ,compl_claim_id
92: ,incident_date
93: ,description

Line 173: Cursor C_Sel1 is select ghr_compl_incidents_s.nextval from sys.dual;

169: Procedure pre_insert
170: (p_rec in out nocopy ghr_cin_shd.g_rec_type
171: ) is
172: --
173: Cursor C_Sel1 is select ghr_compl_incidents_s.nextval from sys.dual;
174: --
175: Cursor C_Sel2 is
176: Select null
177: from ghr_compl_incidents

Line 177: from ghr_compl_incidents

173: Cursor C_Sel1 is select ghr_compl_incidents_s.nextval from sys.dual;
174: --
175: Cursor C_Sel2 is
176: Select null
177: from ghr_compl_incidents
178: where compl_incident_id =
179: ghr_cin_ins.g_compl_incident_id_i;
180: --
181: l_proc varchar2(72) := g_package||'pre_insert';

Line 199: fnd_message.set_token('TABLE_NAME','ghr_compl_incidents');

195: --
196: -- The primary key values are already in use.
197: --
198: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
199: fnd_message.set_token('TABLE_NAME','ghr_compl_incidents');
200: fnd_message.raise_error;
201: End If;
202: Close C_Sel2;
203: --

Line 283: (p_module_name => 'GHR_COMPL_INCIDENTS'

279: --
280: when hr_api.cannot_find_prog_unit then
281: --
282: hr_api.cannot_find_prog_unit_error
283: (p_module_name => 'GHR_COMPL_INCIDENTS'
284: ,p_hook_type => 'AI');
285: --
286: end;
287: --