DBA Data[Home] [Help]

APPS.GHR_CCA_INS dependencies on GHR_COMPL_APPEALS

Line 87: -- Insert the row into: ghr_compl_appeals

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

Line 89: insert into ghr_compl_appeals

85: --
86: --
87: -- Insert the row into: ghr_compl_appeals
88: --
89: insert into ghr_compl_appeals
90: (compl_appeal_id
91: ,complaint_id
92: ,appeal_date
93: ,appealed_to

Line 225: Cursor C_Sel1 is select ghr_compl_appeals_s.nextval from sys.dual;

221: Procedure pre_insert
222: (p_rec in out nocopy ghr_cca_shd.g_rec_type
223: ) is
224: --
225: Cursor C_Sel1 is select ghr_compl_appeals_s.nextval from sys.dual;
226: --
227: Cursor C_Sel2 is
228: Select null
229: from ghr_compl_appeals

Line 229: from ghr_compl_appeals

225: Cursor C_Sel1 is select ghr_compl_appeals_s.nextval from sys.dual;
226: --
227: Cursor C_Sel2 is
228: Select null
229: from ghr_compl_appeals
230: where compl_appeal_id =
231: ghr_cca_ins.g_compl_appeal_id_i;
232: --
233: l_proc varchar2(72) := g_package||'pre_insert';

Line 251: fnd_message.set_token('TABLE_NAME','ghr_compl_appeals');

247: --
248: -- The primary key values are already in use.
249: --
250: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
251: fnd_message.set_token('TABLE_NAME','ghr_compl_appeals');
252: fnd_message.raise_error;
253: End If;
254: Close C_Sel2;
255: --

Line 361: (p_module_name => 'GHR_COMPL_APPEALS'

357: --
358: when hr_api.cannot_find_prog_unit then
359: --
360: hr_api.cannot_find_prog_unit_error
361: (p_module_name => 'GHR_COMPL_APPEALS'
362: ,p_hook_type => 'AI');
363: --
364: end;
365: --