DBA Data[Home] [Help]

APPS.BEN_BNG_SHD dependencies on BEN_BENFTS_GRP

Line 36: If (p_constraint_name = 'BEN_BENFTS_GRP_FK1') Then

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'BEN_BENFTS_GRP_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;

Line 41: ElsIf (p_constraint_name = 'BEN_BENFTS_GRP_PK') 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_BENFTS_GRP_PK') 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 53: ElsIf (p_constraint_name = 'BEN_BENFTS_GRP_RT_F_FK1') Then

49: hr_utility.set_message_token('STEP','15');
50: hr_utility.raise_error;
51: ElsIf (p_constraint_name = 'BEN_BENEFIT_ACTIONS_FK3') Then
52: ben_utility.child_exists_error(p_table_name => 'BEN_BENEFIT_ACTIONS');
53: ElsIf (p_constraint_name = 'BEN_BENFTS_GRP_RT_F_FK1') Then
54: ben_utility.child_exists_error(p_table_name => 'BEN_BENFTS_GRP_RT_F');
55: ElsIf (p_constraint_name = 'BEN_BENFTS_GRP_PRTE_F_FK1') Then
56: ben_utility.child_exists_error(p_table_name => 'BEN_BENFTS_GRP_PRTE_F');
57: Else

Line 54: ben_utility.child_exists_error(p_table_name => 'BEN_BENFTS_GRP_RT_F');

50: hr_utility.raise_error;
51: ElsIf (p_constraint_name = 'BEN_BENEFIT_ACTIONS_FK3') Then
52: ben_utility.child_exists_error(p_table_name => 'BEN_BENEFIT_ACTIONS');
53: ElsIf (p_constraint_name = 'BEN_BENFTS_GRP_RT_F_FK1') Then
54: ben_utility.child_exists_error(p_table_name => 'BEN_BENFTS_GRP_RT_F');
55: ElsIf (p_constraint_name = 'BEN_BENFTS_GRP_PRTE_F_FK1') Then
56: ben_utility.child_exists_error(p_table_name => 'BEN_BENFTS_GRP_PRTE_F');
57: Else
58: hr_utility.set_message(801, 'HR_7877_API_INVALID_CONSTRAINT');

Line 55: ElsIf (p_constraint_name = 'BEN_BENFTS_GRP_PRTE_F_FK1') Then

51: ElsIf (p_constraint_name = 'BEN_BENEFIT_ACTIONS_FK3') Then
52: ben_utility.child_exists_error(p_table_name => 'BEN_BENEFIT_ACTIONS');
53: ElsIf (p_constraint_name = 'BEN_BENFTS_GRP_RT_F_FK1') Then
54: ben_utility.child_exists_error(p_table_name => 'BEN_BENFTS_GRP_RT_F');
55: ElsIf (p_constraint_name = 'BEN_BENFTS_GRP_PRTE_F_FK1') Then
56: ben_utility.child_exists_error(p_table_name => 'BEN_BENFTS_GRP_PRTE_F');
57: Else
58: hr_utility.set_message(801, 'HR_7877_API_INVALID_CONSTRAINT');
59: hr_utility.set_message_token('PROCEDURE', l_proc);

Line 56: ben_utility.child_exists_error(p_table_name => 'BEN_BENFTS_GRP_PRTE_F');

52: ben_utility.child_exists_error(p_table_name => 'BEN_BENEFIT_ACTIONS');
53: ElsIf (p_constraint_name = 'BEN_BENFTS_GRP_RT_F_FK1') Then
54: ben_utility.child_exists_error(p_table_name => 'BEN_BENFTS_GRP_RT_F');
55: ElsIf (p_constraint_name = 'BEN_BENFTS_GRP_PRTE_F_FK1') Then
56: ben_utility.child_exists_error(p_table_name => 'BEN_BENFTS_GRP_PRTE_F');
57: Else
58: hr_utility.set_message(801, 'HR_7877_API_INVALID_CONSTRAINT');
59: hr_utility.set_message_token('PROCEDURE', l_proc);
60: hr_utility.set_message_token('CONSTRAINT_NAME', p_constraint_name);

Line 117: from ben_benfts_grp

113: bng_attribute28,
114: bng_attribute29,
115: bng_attribute30,
116: object_version_number
117: from ben_benfts_grp
118: where benfts_grp_id = p_benfts_grp_id;
119: --
120: l_proc varchar2(72) := g_package||'api_updating';
121: l_fct_ret boolean;

Line 222: from ben_benfts_grp

218: bng_attribute28,
219: bng_attribute29,
220: bng_attribute30,
221: object_version_number
222: from ben_benfts_grp
223: where benfts_grp_id = p_benfts_grp_id
224: for update nowait;
225: --
226: l_proc varchar2(72) := g_package||'lck';

Line 265: hr_utility.set_message_token('TABLE_NAME', 'ben_benfts_grp');

261: -- The object is locked therefore we need to supply a meaningful
262: -- error message.
263: --
264: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
265: hr_utility.set_message_token('TABLE_NAME', 'ben_benfts_grp');
266: hr_utility.raise_error;
267: End lck;
268: --
269: -- ----------------------------------------------------------------------------