DBA Data[Home] [Help]

APPS.PER_VAC_INS dependencies on PER_ALL_VACANCIES

Line 87: -- Insert the row into: per_all_vacancies

83: p_rec.object_version_number := 1; -- Initialise the object version
84: --
85: per_vac_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: per_all_vacancies
88: --
89: insert into per_all_vacancies
90: (vacancy_id
91: ,business_group_id

Line 89: insert into per_all_vacancies

85: per_vac_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: per_all_vacancies
88: --
89: insert into per_all_vacancies
90: (vacancy_id
91: ,business_group_id
92: ,position_id
93: ,job_id

Line 264: from per_all_vacancies

260: Cursor C_Sel1 is select per_vacancies_s.nextval from sys.dual;
261: --
262: Cursor C_Sel2 is
263: Select null
264: from per_all_vacancies
265: where vacancy_id =
266: per_vac_ins.g_vacancy_id_i;
267: --
268: l_proc varchar2(72) := g_package||'pre_insert';

Line 286: fnd_message.set_token('TABLE_NAME','per_all_vacancies');

282: --
283: -- The primary key values are already in use.
284: --
285: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
286: fnd_message.set_token('TABLE_NAME','per_all_vacancies');
287: fnd_message.raise_error;
288: end if;
289: Close C_Sel2;
290: --

Line 464: (p_module_name => 'PER_ALL_VACANCIES'

460: --
461: when hr_api.cannot_find_prog_unit then
462: --
463: hr_api.cannot_find_prog_unit_error
464: (p_module_name => 'PER_ALL_VACANCIES'
465: ,p_hook_type => 'AI');
466: --
467: end;
468: --