DBA Data[Home] [Help]

APPS.BEN_CRP_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_CBR_PER_IN_LER_FK1') Then
37: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
38: fnd_message.set_token('PROCEDURE', l_proc);

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

49: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
50: fnd_message.raise_error;
51: End If;
52: --
53: hr_utility.set_location(' Leaving:'||l_proc, 10);
54: End constraint_error;
55: --
56: -- ----------------------------------------------------------------------------
57: -- |-----------------------------< api_updating >-----------------------------|

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

112: l_proc varchar2(72) := g_package||'api_updating';
113: l_fct_ret boolean;
114: --
115: Begin
116: hr_utility.set_location('Entering:'||l_proc, 5);
117: --
118: If (
119: p_cbr_per_in_ler_id is null and
120: p_object_version_number is null

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

128: If (
129: p_cbr_per_in_ler_id = g_old_rec.cbr_per_in_ler_id and
130: p_object_version_number = g_old_rec.object_version_number
131: ) Then
132: hr_utility.set_location(l_proc, 10);
133: --
134: -- The g_old_rec is current therefore we must
135: -- set the returning function to true
136: --

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

153: If (p_object_version_number <> g_old_rec.object_version_number) Then
154: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
155: fnd_message.raise_error;
156: End If;
157: hr_utility.set_location(l_proc, 15);
158: l_fct_ret := true;
159: End If;
160: End If;
161: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

157: hr_utility.set_location(l_proc, 15);
158: l_fct_ret := true;
159: End If;
160: End If;
161: hr_utility.set_location(' Leaving:'||l_proc, 20);
162: Return (l_fct_ret);
163: --
164: End api_updating;
165: --

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

220: --
221: l_proc varchar2(72) := g_package||'lck';
222: --
223: Begin
224: hr_utility.set_location('Entering:'||l_proc, 5);
225: --
226: -- Add any mandatory argument checking here:
227: -- Example:
228: -- hr_api.mandatory_arg_error

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

245: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
246: fnd_message.raise_error;
247: End If;
248: --
249: hr_utility.set_location(' Leaving:'||l_proc, 10);
250: --
251: -- We need to trap the ORA LOCK exception
252: --
253: Exception

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

312: l_proc varchar2(72) := g_package||'convert_args';
313: --
314: Begin
315: --
316: hr_utility.set_location('Entering:'||l_proc, 5);
317: --
318: -- Convert arguments into local l_rec structure.
319: --
320: l_rec.cbr_per_in_ler_id := p_cbr_per_in_ler_id;

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

358: l_rec.object_version_number := p_object_version_number;
359: --
360: -- Return the plsql record structure.
361: --
362: hr_utility.set_location(' Leaving:'||l_proc, 10);
363: Return(l_rec);
364: --
365: End convert_args;
366: --