DBA Data[Home] [Help]

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

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

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

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

92: l_proc varchar2(72) := g_package||'api_updating';
93: l_fct_ret boolean;
94: --
95: Begin
96: hr_utility.set_location('Entering:'||l_proc, 5);
97: --
98: If (
99: p_ext_crit_typ_id is null and
100: p_object_version_number is null

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

108: If (
109: p_ext_crit_typ_id = g_old_rec.ext_crit_typ_id and
110: p_object_version_number = g_old_rec.object_version_number
111: ) Then
112: hr_utility.set_location(l_proc, 10);
113: --
114: -- The g_old_rec is current therefore we must
115: -- set the returning function to true
116: --

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

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

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

137: hr_utility.set_location(l_proc, 15);
138: l_fct_ret := true;
139: End If;
140: End If;
141: hr_utility.set_location(' Leaving:'||l_proc, 20);
142: Return (l_fct_ret);
143: --
144: End api_updating;
145: --

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

173: --
174: l_proc varchar2(72) := g_package||'lck';
175: --
176: Begin
177: hr_utility.set_location('Entering:'||l_proc, 5);
178: --
179: -- Add any mandatory argument checking here:
180: -- Example:
181: -- hr_api.mandatory_arg_error

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

198: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
199: fnd_message.raise_error;
200: End If;
201: --
202: hr_utility.set_location(' Leaving:'||l_proc, 10);
203: --
204: -- We need to trap the ORA LOCK exception
205: --
206: Exception

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

238: l_proc varchar2(72) := g_package||'convert_args';
239: --
240: Begin
241: --
242: hr_utility.set_location('Entering:'||l_proc, 5);
243: --
244: -- Convert arguments into local l_rec structure.
245: --
246: l_rec.ext_crit_typ_id := p_ext_crit_typ_id;

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

257: l_rec.excld_flag := p_excld_flag;
258: --
259: -- Return the plsql record structure.
260: --
261: hr_utility.set_location(' Leaving:'||l_proc, 10);
262: Return(l_rec);
263: --
264: End convert_args;
265: --