DBA Data[Home] [Help]

APPS.BEN_XDD_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_DATA_ELMT_DECD_FK1') 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 95: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

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

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

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

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

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

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 243: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

259: l_rec.object_version_number := p_object_version_number;
260: --
261: -- Return the plsql record structure.
262: --
263: hr_utility.set_location(' Leaving:'||l_proc, 10);
264: Return(l_rec);
265: --
266: End convert_args;
267: --