DBA Data[Home] [Help]

APPS.BEN_CPT_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_cpt_shd.api_updating
49: (p_effective_date => p_effective_date,
50: p_cmbn_ptip_opt_id => p_cmbn_ptip_opt_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_ptip_opt_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 149: hr_utility.set_location(' Leaving:'||l_proc, 10);

145: --
146: --
147: End If;
148: --
149: hr_utility.set_location(' Leaving:'||l_proc, 10);
150: Exception
151: When l_integrity_error Then
152: --
153: -- A referential integrity check was violated therefore

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

152: --
153: -- A referential integrity check was violated therefore
154: -- we must error
155: --
156: hr_utility.set_message(801, 'HR_7216_DT_UPD_INTEGRITY_ERR');
157: hr_utility.set_message_token('TABLE_NAME', l_table_name);
158: hr_utility.raise_error;
159: When Others Then
160: --

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

153: -- A referential integrity check was violated therefore
154: -- we must error
155: --
156: hr_utility.set_message(801, 'HR_7216_DT_UPD_INTEGRITY_ERR');
157: hr_utility.set_message_token('TABLE_NAME', l_table_name);
158: hr_utility.raise_error;
159: When Others Then
160: --
161: -- An unhandled or unexpected error has occurred which

Line 158: hr_utility.raise_error;

154: -- we must error
155: --
156: hr_utility.set_message(801, 'HR_7216_DT_UPD_INTEGRITY_ERR');
157: hr_utility.set_message_token('TABLE_NAME', l_table_name);
158: hr_utility.raise_error;
159: When Others Then
160: --
161: -- An unhandled or unexpected error has occurred which
162: -- we must report

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

160: --
161: -- An unhandled or unexpected error has occurred which
162: -- we must report
163: --
164: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
165: hr_utility.set_message_token('PROCEDURE', l_proc);
166: hr_utility.set_message_token('STEP','15');
167: hr_utility.raise_error;
168: End dt_update_validate;

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

161: -- An unhandled or unexpected error has occurred which
162: -- we must report
163: --
164: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
165: hr_utility.set_message_token('PROCEDURE', l_proc);
166: hr_utility.set_message_token('STEP','15');
167: hr_utility.raise_error;
168: End dt_update_validate;
169: --

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

162: -- we must report
163: --
164: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
165: hr_utility.set_message_token('PROCEDURE', l_proc);
166: hr_utility.set_message_token('STEP','15');
167: hr_utility.raise_error;
168: End dt_update_validate;
169: --
170: -- ----------------------------------------------------------------------------

Line 167: hr_utility.raise_error;

163: --
164: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
165: hr_utility.set_message_token('PROCEDURE', l_proc);
166: hr_utility.set_message_token('STEP','15');
167: hr_utility.raise_error;
168: End dt_update_validate;
169: --
170: -- ----------------------------------------------------------------------------
171: -- |--------------------------< dt_delete_validate >--------------------------|

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

212: l_rows_exist Exception;
213: l_table_name all_tables.table_name%TYPE;
214: --
215: Begin
216: hr_utility.set_location('Entering:'||l_proc, 5);
217: --
218: -- Ensure that the p_datetrack_mode argument is not null
219: --
220: 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_ptip_opt_id => p_rec.cmbn_ptip_opt_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_ptip_opt_id => p_rec.cmbn_ptip_opt_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;