DBA Data[Home] [Help]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

321: l_proc varchar2(72) := g_package||'convert_args';
322: --
323: Begin
324: --
325: hr_utility.set_location('Entering:'||l_proc, 5);
326: --
327: -- Convert arguments into local l_rec structure.
328: --
329: l_rec.rptg_grp_id := p_rptg_grp_id;

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

368: l_rec.ordr_num := p_ordr_num; --iRec
369: --
370: -- Return the plsql record structure.
371: --
372: hr_utility.set_location(' Leaving:'||l_proc, 10);
373: Return(l_rec);
374: --
375: End convert_args;
376: --