DBA Data[Home] [Help]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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