DBA Data[Home] [Help]

APPS.BEN_ECR_SHD dependencies on BEN_ENRT_RT

Line 41: ElsIf (p_constraint_name = 'BEN_ENRT_RT_FK1') Then

37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','5');
40: hr_utility.raise_error;
41: ElsIf (p_constraint_name = 'BEN_ENRT_RT_FK1') Then
42: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
43: hr_utility.set_message_token('PROCEDURE', l_proc);
44: hr_utility.set_message_token('STEP','10');
45: hr_utility.raise_error;

Line 46: ElsIf (p_constraint_name = 'BEN_ENRT_RT_FK3') Then

42: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
43: hr_utility.set_message_token('PROCEDURE', l_proc);
44: hr_utility.set_message_token('STEP','10');
45: hr_utility.raise_error;
46: ElsIf (p_constraint_name = 'BEN_ENRT_RT_FK3') Then
47: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
48: hr_utility.set_message_token('PROCEDURE', l_proc);
49: hr_utility.set_message_token('STEP','15');
50: hr_utility.raise_error;

Line 51: ElsIf (p_constraint_name = 'BEN_ENRT_RT_PK') Then

47: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
48: hr_utility.set_message_token('PROCEDURE', l_proc);
49: hr_utility.set_message_token('STEP','15');
50: hr_utility.raise_error;
51: ElsIf (p_constraint_name = 'BEN_ENRT_RT_PK') Then
52: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
53: hr_utility.set_message_token('PROCEDURE', l_proc);
54: hr_utility.set_message_token('STEP','20');
55: hr_utility.raise_error;

Line 201: from ben_enrt_rt

197: program_application_id,
198: program_id ,
199: program_update_date ,
200: object_version_number
201: from ben_enrt_rt
202: where enrt_rt_id = p_enrt_rt_id;
203: --
204: l_proc varchar2(72) := g_package||'api_updating';
205: l_fct_ret boolean;

Line 367: from ben_enrt_rt

363: program_application_id,
364: program_id ,
365: program_update_date ,
366: object_version_number
367: from ben_enrt_rt
368: where enrt_rt_id = p_enrt_rt_id
369: for update nowait;
370: --
371: l_proc varchar2(72) := g_package||'lck';

Line 410: hr_utility.set_message_token('TABLE_NAME', 'ben_enrt_rt');

406: -- The object is locked therefore we need to supply a meaningful
407: -- error message.
408: --
409: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
410: hr_utility.set_message_token('TABLE_NAME', 'ben_enrt_rt');
411: hr_utility.raise_error;
412: End lck;
413: --
414: -- ----------------------------------------------------------------------------