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 266: from per_all_vacancies

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

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

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

Line 468: (p_module_name => 'PER_ALL_VACANCIES'

464: --
465: when hr_api.cannot_find_prog_unit then
466: --
467: hr_api.cannot_find_prog_unit_error
468: (p_module_name => 'PER_ALL_VACANCIES'
469: ,p_hook_type => 'AI');
470: --
471: end;
472: --