DBA Data[Home] [Help]

APPS.BEN_XIC_SHD dependencies on HR_UTILITY

Line 18: hr_utility.set_location('Entering:'||l_proc, 5);

14: --
15: l_proc varchar2(72) := g_package||'return_api_dml_status';
16: --
17: Begin
18: hr_utility.set_location('Entering:'||l_proc, 5);
19: --
20: Return (nvl(g_api_dml, false));
21: --
22: hr_utility.set_location(' Leaving:'||l_proc, 10);

Line 22: hr_utility.set_location(' Leaving:'||l_proc, 10);

18: hr_utility.set_location('Entering:'||l_proc, 5);
19: --
20: Return (nvl(g_api_dml, false));
21: --
22: hr_utility.set_location(' Leaving:'||l_proc, 10);
23: End return_api_dml_status;
24: --
25: -- ----------------------------------------------------------------------------
26: -- |---------------------------< constraint_error >---------------------------|

Line 34: hr_utility.set_location('Entering:'||l_proc, 5);

30: --
31: l_proc varchar2(72) := g_package||'constraint_error';
32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'BEN_EXT_INCL_CHG_FK1') Then
37: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
38: fnd_message.set_token('PROCEDURE', l_proc);

Line 63: hr_utility.set_location(' Leaving:'||l_proc, 10);

59: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
60: fnd_message.raise_error;
61: End If;
62: --
63: hr_utility.set_location(' Leaving:'||l_proc, 10);
64: End constraint_error;
65: --
66: -- ----------------------------------------------------------------------------
67: -- |-----------------------------< api_updating >-----------------------------|

Line 100: hr_utility.set_location('Entering:'||l_proc, 5);

96: l_proc varchar2(72) := g_package||'api_updating';
97: l_fct_ret boolean;
98: --
99: Begin
100: hr_utility.set_location('Entering:'||l_proc, 5);
101: --
102: If (
103: p_ext_incl_chg_id is null and
104: p_object_version_number is null

Line 116: hr_utility.set_location(l_proc, 10);

112: If (
113: p_ext_incl_chg_id = g_old_rec.ext_incl_chg_id and
114: p_object_version_number = g_old_rec.object_version_number
115: ) Then
116: hr_utility.set_location(l_proc, 10);
117: --
118: -- The g_old_rec is current therefore we must
119: -- set the returning function to true
120: --

Line 141: hr_utility.set_location(l_proc, 15);

137: If (p_object_version_number <> g_old_rec.object_version_number) Then
138: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
139: fnd_message.raise_error;
140: End If;
141: hr_utility.set_location(l_proc, 15);
142: l_fct_ret := true;
143: End If;
144: End If;
145: hr_utility.set_location(' Leaving:'||l_proc, 20);

Line 145: hr_utility.set_location(' Leaving:'||l_proc, 20);

141: hr_utility.set_location(l_proc, 15);
142: l_fct_ret := true;
143: End If;
144: End If;
145: hr_utility.set_location(' Leaving:'||l_proc, 20);
146: Return (l_fct_ret);
147: --
148: End api_updating;
149: --

Line 182: hr_utility.set_location('Entering:'||l_proc, 5);

178: --
179: l_proc varchar2(72) := g_package||'lck';
180: --
181: Begin
182: hr_utility.set_location('Entering:'||l_proc, 5);
183: --
184: -- Add any mandatory argument checking here:
185: -- Example:
186: -- hr_api.mandatory_arg_error

Line 207: hr_utility.set_location(' Leaving:'||l_proc, 10);

203: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
204: fnd_message.raise_error;
205: End If;
206: --
207: hr_utility.set_location(' Leaving:'||l_proc, 10);
208: --
209: -- We need to trap the ORA LOCK exception
210: --
211: Exception

Line 248: hr_utility.set_location('Entering:'||l_proc, 5);

244: l_proc varchar2(72) := g_package||'convert_args';
245: --
246: Begin
247: --
248: hr_utility.set_location('Entering:'||l_proc, 5);
249: --
250: -- Convert arguments into local l_rec structure.
251: --
252: l_rec.ext_incl_chg_id := p_ext_incl_chg_id;

Line 269: hr_utility.set_location(' Leaving:'||l_proc, 10);

265:
266: --
267: -- Return the plsql record structure.
268: --
269: hr_utility.set_location(' Leaving:'||l_proc, 10);
270: Return(l_rec);
271: --
272: End convert_args;
273: --