DBA Data[Home] [Help]

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

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

54: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
55: fnd_message.raise_error;
56: End If;
57: --
58: hr_utility.set_location(' Leaving:'||l_proc, 10);
59: End constraint_error;
60: --
61: -- ----------------------------------------------------------------------------
62: -- |-----------------------------< api_updating >-----------------------------|

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

121: l_proc varchar2(72) := g_package||'api_updating';
122: l_fct_ret boolean;
123: --
124: Begin
125: hr_utility.set_location('Entering:'||l_proc, 5);
126: --
127: If (
128: p_prtt_rt_val_ctfn_prvdd_id is null and
129: p_object_version_number is null

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

137: If (
138: p_prtt_rt_val_ctfn_prvdd_id = g_old_rec.prtt_rt_val_ctfn_prvdd_id and
139: p_object_version_number = g_old_rec.object_version_number
140: ) Then
141: hr_utility.set_location(l_proc, 10);
142: --
143: -- The g_old_rec is current therefore we must
144: -- set the returning function to true
145: --

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

162: If (p_object_version_number <> g_old_rec.object_version_number) Then
163: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
164: fnd_message.raise_error;
165: End If;
166: hr_utility.set_location(l_proc, 15);
167: l_fct_ret := true;
168: End If;
169: End If;
170: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

166: hr_utility.set_location(l_proc, 15);
167: l_fct_ret := true;
168: End If;
169: End If;
170: hr_utility.set_location(' Leaving:'||l_proc, 20);
171: Return (l_fct_ret);
172: --
173: End api_updating;
174: --

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

233: --
234: l_proc varchar2(72) := g_package||'lck';
235: --
236: Begin
237: hr_utility.set_location('Entering:'||l_proc, 5);
238: --
239: -- Add any mandatory argument checking here:
240: -- Example:
241: -- hr_api.mandatory_arg_error

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

258: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
259: fnd_message.raise_error;
260: End If;
261: --
262: hr_utility.set_location(' Leaving:'||l_proc, 10);
263: --
264: -- We need to trap the ORA LOCK exception
265: --
266: Exception

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

329: l_proc varchar2(72) := g_package||'convert_args';
330: --
331: Begin
332: --
333: hr_utility.set_location('Entering:'||l_proc, 5);
334: --
335: -- Convert arguments into local l_rec structure.
336: --
337: l_rec.prtt_rt_val_ctfn_prvdd_id := p_prtt_rt_val_ctfn_prvdd_id;

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

379: l_rec.object_version_number := p_object_version_number;
380: --
381: -- Return the plsql record structure.
382: --
383: hr_utility.set_location(' Leaving:'||l_proc, 10);
384: Return(l_rec);
385: --
386: End convert_args;
387: --