DBA Data[Home] [Help]

APPS.PAY_USER_COLUMN_API dependencies on HR_UTILITY

Line 30: hr_utility.set_location('Entering:'|| l_proc, 10);

26: l_proc varchar2(72) := g_package||'create_user_column';
27: l_ovn number;
28: l_user_column_id number;
29: begin
30: hr_utility.set_location('Entering:'|| l_proc, 10);
31: --
32: -- Issue a savepoint
33: --
34: savepoint create_user_column;

Line 100: hr_utility.set_location(' Leaving:'||l_proc, 70);

96: --
97: --For MLS------------------------------------------------------------------
98: pay_pct_ins.ins_tl(userenv('LANG'),p_user_column_id,p_user_column_name);
99: ---------------------------------------------------------------------------
100: hr_utility.set_location(' Leaving:'||l_proc, 70);
101: exception
102: when hr_api.validate_enabled then
103: --
104: -- As the Validate_Enabled exception has been raised

Line 115: hr_utility.set_location(' Leaving:'||l_proc, 80);

111: -- when validation only mode is being used.)
112: --
113: p_user_column_id := null;
114: p_object_version_number := null;
115: hr_utility.set_location(' Leaving:'||l_proc, 80);
116: when others then
117: --
118: -- A validation or unexpected error has occured
119: --

Line 121: hr_utility.set_location(' Leaving:'||l_proc, 90);

117: --
118: -- A validation or unexpected error has occured
119: --
120: rollback to create_user_column;
121: hr_utility.set_location(' Leaving:'||l_proc, 90);
122: raise;
123: end create_user_column;
124: --
125: -- ----------------------------------------------------------------------------

Line 144: hr_utility.set_location('Entering:'|| l_proc, 10);

140: l_proc varchar2(72) := g_package||'update_user_column';
141: l_ovn number := p_object_version_number;
142: l_formula_warning boolean;
143: begin
144: hr_utility.set_location('Entering:'|| l_proc, 10);
145: --
146: -- Issue a savepoint
147: --
148: savepoint update_user_column;

Line 209: hr_utility.set_location(' Leaving:'||l_proc, 70);

205: --
206: --For MLS------------------------------------------------------------------
207: pay_pct_upd.upd_tl(userenv('LANG'),p_user_column_id,p_user_column_name);
208: ---------------------------------------------------------------------------
209: hr_utility.set_location(' Leaving:'||l_proc, 70);
210: exception
211: when hr_api.validate_enabled then
212: --
213: -- As the Validate_Enabled exception has been raised

Line 223: hr_utility.set_location(' Leaving:'||l_proc, 80);

219: -- (Any key or derived arguments must be set to null
220: -- when validation only mode is being used.)
221: --
222: p_object_version_number := null;
223: hr_utility.set_location(' Leaving:'||l_proc, 80);
224: when others then
225: --
226: -- A validation or unexpected error has occured
227: --

Line 229: hr_utility.set_location(' Leaving:'||l_proc, 90);

225: --
226: -- A validation or unexpected error has occured
227: --
228: rollback to update_user_column;
229: hr_utility.set_location(' Leaving:'||l_proc, 90);
230: raise;
231: end update_user_column;
232: --
233: -- ----------------------------------------------------------------------------

Line 249: hr_utility.set_location('Entering:'|| l_proc, 10);

245:
246: l_proc varchar2(72) := g_package||'delete_user_column';
247: l_ovn number := p_object_version_number;
248: begin
249: hr_utility.set_location('Entering:'|| l_proc, 10);
250: --
251: -- Issue a savepoint
252: --
253: savepoint delete_user_column;

Line 305: hr_utility.set_location(' Leaving:'||l_proc, 70);

301: --
302: --For MLS------------------------------------------------------------------
303: pay_pct_del.del_tl(p_user_column_id);
304: ---------------------------------------------------------------------------
305: hr_utility.set_location(' Leaving:'||l_proc, 70);
306: exception
307: when hr_api.validate_enabled then
308: --
309: -- As the Validate_Enabled exception has been raised

Line 319: hr_utility.set_location(' Leaving:'||l_proc, 80);

315: -- (Any key or derived arguments must be set to null
316: -- when validation only mode is being used.)
317: --
318: p_object_version_number := null;
319: hr_utility.set_location(' Leaving:'||l_proc, 80);
320: when others then
321: --
322: -- A validation or unexpected error has occured
323: --

Line 325: hr_utility.set_location(' Leaving:'||l_proc, 90);

321: --
322: -- A validation or unexpected error has occured
323: --
324: rollback to delete_user_column;
325: hr_utility.set_location(' Leaving:'||l_proc, 90);
326: raise;
327: end delete_user_column;
328: --
329: end pay_user_column_api;