DBA Data[Home] [Help]

APPS.GHR_CPL_INS dependencies on GHR_COMPL_PEOPLE

Line 87: -- Insert the row into: ghr_compl_people

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

Line 89: insert into ghr_compl_people

85: --
86: --
87: -- Insert the row into: ghr_compl_people
88: --
89: insert into ghr_compl_people
90: (compl_person_id
91: ,person_id
92: ,complaint_id
93: ,role_code

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

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

Line 177: from ghr_compl_people

173: Cursor C_Sel1 is select ghr_compl_people_s.nextval from sys.dual;
174: --
175: Cursor C_Sel2 is
176: Select null
177: from ghr_compl_people
178: where compl_person_id =
179: ghr_cpl_ins.g_compl_person_id_i;
180: --
181: l_proc varchar2(72) := g_package||'pre_insert';

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

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_people');
200: fnd_message.raise_error;
201: End If;
202: Close C_Sel2;
203: --

Line 283: (p_module_name => 'GHR_COMPL_PEOPLE'

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_PEOPLE'
284: ,p_hook_type => 'AI');
285: --
286: end;
287: --