DBA Data[Home] [Help]

APPS.BEN_CPL_BUS dependencies on HR_UTILITY

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

42: l_api_updating boolean;
43: --
44: Begin
45: --
46: hr_utility.set_location('Entering:'||l_proc, 5);
47: --
48: l_api_updating := ben_cpl_shd.api_updating
49: (p_effective_date => p_effective_date,
50: p_cmbn_plip_id => p_cmbn_plip_id,

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

71: end if;
72: --
73: end if;
74: --
75: hr_utility.set_location('Leaving:'||l_proc, 10);
76: --
77: End chk_cmbn_plip_id;
78: --
79: -- ----------------------------------------------------------------------------

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

115: l_integrity_error Exception;
116: l_table_name all_tables.table_name%TYPE;
117: --
118: Begin
119: hr_utility.set_location('Entering:'||l_proc, 5);
120: --
121: -- Ensure that the p_datetrack_mode argument is not null
122: --
123: hr_api.mandatory_arg_error

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

154: End If;
155: --
156: End If;
157: --
158: hr_utility.set_location(' Leaving:'||l_proc, 10);
159: Exception
160: When l_integrity_error Then
161: --
162: -- A referential integrity check was violated therefore

Line 165: hr_utility.set_message(801, 'HR_7216_DT_UPD_INTEGRITY_ERR');

161: --
162: -- A referential integrity check was violated therefore
163: -- we must error
164: --
165: hr_utility.set_message(801, 'HR_7216_DT_UPD_INTEGRITY_ERR');
166: hr_utility.set_message_token('TABLE_NAME', l_table_name);
167: hr_utility.raise_error;
168: When Others Then
169: --

Line 166: hr_utility.set_message_token('TABLE_NAME', l_table_name);

162: -- A referential integrity check was violated therefore
163: -- we must error
164: --
165: hr_utility.set_message(801, 'HR_7216_DT_UPD_INTEGRITY_ERR');
166: hr_utility.set_message_token('TABLE_NAME', l_table_name);
167: hr_utility.raise_error;
168: When Others Then
169: --
170: -- An unhandled or unexpected error has occurred which

Line 167: hr_utility.raise_error;

163: -- we must error
164: --
165: hr_utility.set_message(801, 'HR_7216_DT_UPD_INTEGRITY_ERR');
166: hr_utility.set_message_token('TABLE_NAME', l_table_name);
167: hr_utility.raise_error;
168: When Others Then
169: --
170: -- An unhandled or unexpected error has occurred which
171: -- we must report

Line 173: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');

169: --
170: -- An unhandled or unexpected error has occurred which
171: -- we must report
172: --
173: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
174: hr_utility.set_message_token('PROCEDURE', l_proc);
175: hr_utility.set_message_token('STEP','15');
176: hr_utility.raise_error;
177: End dt_update_validate;

Line 174: hr_utility.set_message_token('PROCEDURE', l_proc);

170: -- An unhandled or unexpected error has occurred which
171: -- we must report
172: --
173: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
174: hr_utility.set_message_token('PROCEDURE', l_proc);
175: hr_utility.set_message_token('STEP','15');
176: hr_utility.raise_error;
177: End dt_update_validate;
178: --

Line 175: hr_utility.set_message_token('STEP','15');

171: -- we must report
172: --
173: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
174: hr_utility.set_message_token('PROCEDURE', l_proc);
175: hr_utility.set_message_token('STEP','15');
176: hr_utility.raise_error;
177: End dt_update_validate;
178: --
179: -- ----------------------------------------------------------------------------

Line 176: hr_utility.raise_error;

172: --
173: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
174: hr_utility.set_message_token('PROCEDURE', l_proc);
175: hr_utility.set_message_token('STEP','15');
176: hr_utility.raise_error;
177: End dt_update_validate;
178: --
179: -- ----------------------------------------------------------------------------
180: -- |--------------------------< dt_delete_validate >--------------------------|

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

221: l_rows_exist Exception;
222: l_table_name all_tables.table_name%TYPE;
223: --
224: Begin
225: hr_utility.set_location('Entering:'||l_proc, 5);
226: --
227: -- Ensure that the p_datetrack_mode argument is not null
228: --
229: hr_api.mandatory_arg_error

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

284: End If;
285: --
286: End If;
287: --
288: hr_utility.set_location(' Leaving:'||l_proc, 10);
289: Exception
290: When l_rows_exist Then
291: --
292: -- A referential integrity check was violated therefore

Line 295: hr_utility.set_message(801, 'HR_7215_DT_CHILD_EXISTS');

291: --
292: -- A referential integrity check was violated therefore
293: -- we must error
294: --
295: hr_utility.set_message(801, 'HR_7215_DT_CHILD_EXISTS');
296: hr_utility.set_message_token('TABLE_NAME', l_table_name);
297: hr_utility.raise_error;
298: When Others Then
299: --

Line 296: hr_utility.set_message_token('TABLE_NAME', l_table_name);

292: -- A referential integrity check was violated therefore
293: -- we must error
294: --
295: hr_utility.set_message(801, 'HR_7215_DT_CHILD_EXISTS');
296: hr_utility.set_message_token('TABLE_NAME', l_table_name);
297: hr_utility.raise_error;
298: When Others Then
299: --
300: -- An unhandled or unexpected error has occurred which

Line 297: hr_utility.raise_error;

293: -- we must error
294: --
295: hr_utility.set_message(801, 'HR_7215_DT_CHILD_EXISTS');
296: hr_utility.set_message_token('TABLE_NAME', l_table_name);
297: hr_utility.raise_error;
298: When Others Then
299: --
300: -- An unhandled or unexpected error has occurred which
301: -- we must report

Line 303: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');

299: --
300: -- An unhandled or unexpected error has occurred which
301: -- we must report
302: --
303: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
304: hr_utility.set_message_token('PROCEDURE', l_proc);
305: hr_utility.set_message_token('STEP','15');
306: hr_utility.raise_error;
307: End dt_delete_validate;

Line 304: hr_utility.set_message_token('PROCEDURE', l_proc);

300: -- An unhandled or unexpected error has occurred which
301: -- we must report
302: --
303: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
304: hr_utility.set_message_token('PROCEDURE', l_proc);
305: hr_utility.set_message_token('STEP','15');
306: hr_utility.raise_error;
307: End dt_delete_validate;
308: --

Line 305: hr_utility.set_message_token('STEP','15');

301: -- we must report
302: --
303: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
304: hr_utility.set_message_token('PROCEDURE', l_proc);
305: hr_utility.set_message_token('STEP','15');
306: hr_utility.raise_error;
307: End dt_delete_validate;
308: --
309: -- ----------------------------------------------------------------------------

Line 306: hr_utility.raise_error;

302: --
303: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
304: hr_utility.set_message_token('PROCEDURE', l_proc);
305: hr_utility.set_message_token('STEP','15');
306: hr_utility.raise_error;
307: End dt_delete_validate;
308: --
309: -- ----------------------------------------------------------------------------
310: -- |---------------------------< insert_validate >----------------------------|

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

318: --
319: l_proc varchar2(72) := g_package||'insert_validate';
320: --
321: Begin
322: hr_utility.set_location('Entering:'||l_proc, 5);
323: --
324: -- Call all supporting business operations
325: --
326: --

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

330: (p_cmbn_plip_id => p_rec.cmbn_plip_id,
331: p_effective_date => p_effective_date,
332: p_object_version_number => p_rec.object_version_number);
333: --
334: hr_utility.set_location(' Leaving:'||l_proc, 10);
335: End insert_validate;
336: --
337: -- ----------------------------------------------------------------------------
338: -- |---------------------------< update_validate >----------------------------|

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

346: --
347: l_proc varchar2(72) := g_package||'update_validate';
348: --
349: Begin
350: hr_utility.set_location('Entering:'||l_proc, 5);
351: --
352: -- Call all supporting business operations
353: --
354: --

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

366: p_datetrack_mode => p_datetrack_mode,
367: p_validation_start_date => p_validation_start_date,
368: p_validation_end_date => p_validation_end_date);
369: --
370: hr_utility.set_location(' Leaving:'||l_proc, 10);
371: End update_validate;
372: --
373: -- ----------------------------------------------------------------------------
374: -- |---------------------------< delete_validate >----------------------------|

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

382: --
383: l_proc varchar2(72) := g_package||'delete_validate';
384: --
385: Begin
386: hr_utility.set_location('Entering:'||l_proc, 5);
387: --
388: -- Call all supporting business operations
389: --
390: dt_delete_validate

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

392: p_validation_start_date => p_validation_start_date,
393: p_validation_end_date => p_validation_end_date,
394: p_cmbn_plip_id => p_rec.cmbn_plip_id);
395: --
396: hr_utility.set_location(' Leaving:'||l_proc, 10);
397: End delete_validate;
398: --
399: --
400: -- ---------------------------------------------------------------------------

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

419: l_proc varchar2(72) := g_package||'return_legislation_code';
420: --
421: begin
422: --
423: hr_utility.set_location('Entering:'|| l_proc, 10);
424: --
425: -- Ensure that all the mandatory parameter are not null
426: --
427: hr_api.mandatory_arg_error(p_api_name => l_proc,

Line 441: hr_utility.set_message(801,'HR_7220_INVALID_PRIMARY_KEY');

437: close csr_leg_code;
438: --
439: -- The primary key is invalid therefore we must error
440: --
441: hr_utility.set_message(801,'HR_7220_INVALID_PRIMARY_KEY');
442: hr_utility.raise_error;
443: --
444: end if;
445: --

Line 442: hr_utility.raise_error;

438: --
439: -- The primary key is invalid therefore we must error
440: --
441: hr_utility.set_message(801,'HR_7220_INVALID_PRIMARY_KEY');
442: hr_utility.raise_error;
443: --
444: end if;
445: --
446: close csr_leg_code;

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

444: end if;
445: --
446: close csr_leg_code;
447: --
448: hr_utility.set_location(' Leaving:'|| l_proc, 20);
449: --
450: return l_legislation_code;
451: --
452: end return_legislation_code;