DBA Data[Home] [Help]

APPS.BEN_VGS_INS dependencies on HR_UTILITY

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

79: l_last_updated_by ben_pl_gd_or_svc_f.last_updated_by%TYPE;
80: l_last_update_login ben_pl_gd_or_svc_f.last_update_login%TYPE;
81: --
82: Begin
83: hr_utility.set_location('Entering:'||l_proc, 5);
84: --
85: -- Get the object version number for the insert
86: --
87: p_rec.object_version_number :=

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

99: -- If the datetrack_mode is not INSERT then we must populate the WHO
100: -- columns with the 'old' creation values and 'new' updated values.
101: --
102: If (p_datetrack_mode <> 'INSERT') then
103: hr_utility.set_location(l_proc, 10);
104: --
105: -- Select the 'old' created values
106: --
107: Open C_Sel1;

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

111: -- The previous 'old' created row has not been found. We need
112: -- to error as an internal datetrack problem exists.
113: --
114: Close C_Sel1;
115: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
116: hr_utility.set_message_token('PROCEDURE', l_proc);
117: hr_utility.set_message_token('STEP','10');
118: hr_utility.raise_error;
119: End If;

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

112: -- to error as an internal datetrack problem exists.
113: --
114: Close C_Sel1;
115: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
116: hr_utility.set_message_token('PROCEDURE', l_proc);
117: hr_utility.set_message_token('STEP','10');
118: hr_utility.raise_error;
119: End If;
120: Close C_Sel1;

Line 117: hr_utility.set_message_token('STEP','10');

113: --
114: Close C_Sel1;
115: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
116: hr_utility.set_message_token('PROCEDURE', l_proc);
117: hr_utility.set_message_token('STEP','10');
118: hr_utility.raise_error;
119: End If;
120: Close C_Sel1;
121: --

Line 118: hr_utility.raise_error;

114: Close C_Sel1;
115: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
116: hr_utility.set_message_token('PROCEDURE', l_proc);
117: hr_utility.set_message_token('STEP','10');
118: hr_utility.raise_error;
119: End If;
120: Close C_Sel1;
121: --
122: -- Set the AOL updated WHO values

Line 235: hr_utility.set_location(' Leaving:'||l_proc, 15);

231: l_last_update_login
232: );
233: --
234: ben_vgs_shd.g_api_dml := false; -- Unset the api dml status
235: hr_utility.set_location(' Leaving:'||l_proc, 15);
236: --
237: Exception
238: When hr_api.check_integrity_violated Then
239: -- A check constraint has been violated

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

262: --
263: l_proc varchar2(72) := g_package||'insert_dml';
264: --
265: Begin
266: hr_utility.set_location('Entering:'||l_proc, 5);
267: --
268: dt_insert_dml(p_rec => p_rec,
269: p_effective_date => p_effective_date,
270: p_datetrack_mode => p_datetrack_mode,

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

270: p_datetrack_mode => p_datetrack_mode,
271: p_validation_start_date => p_validation_start_date,
272: p_validation_end_date => p_validation_end_date);
273: --
274: hr_utility.set_location(' Leaving:'||l_proc, 10);
275: End insert_dml;
276: --
277: -- ----------------------------------------------------------------------------
278: -- |------------------------------< pre_insert >------------------------------|

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

327: from sys.dual;
328: --
329: Begin
330: --
331: hr_utility.set_location('Entering:'||l_proc, 5);
332: --
333: open c1;
334: --
335: fetch c1 into p_rec.pl_gd_or_svc_id;

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

335: fetch c1 into p_rec.pl_gd_or_svc_id;
336: --
337: close c1;
338: --
339: hr_utility.set_location(' Leaving:'||l_proc, 10);
340: --
341: End pre_insert;
342: --
343: -- ----------------------------------------------------------------------------

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

381: --
382: l_proc varchar2(72) := g_package||'post_insert';
383: --
384: Begin
385: hr_utility.set_location('Entering:'||l_proc, 5);
386: --
387: --
388: -- Start of API User Hook for post_insert.
389: --

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

451: --
452: -- End of API User Hook for post_insert.
453: --
454: --
455: hr_utility.set_location(' Leaving:'||l_proc, 10);
456: End post_insert;
457: --
458: -- ----------------------------------------------------------------------------
459: -- |-------------------------------< ins_lck >--------------------------------|

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

503: l_validation_start_date date;
504: l_validation_end_date date;
505: --
506: Begin
507: hr_utility.set_location('Entering:'||l_proc, 5);
508: --
509: -- Validate the datetrack mode mode getting the validation start
510: -- and end dates for the specified datetrack operation.
511: --

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

526: --
527: p_validation_start_date := l_validation_start_date;
528: p_validation_end_date := l_validation_end_date;
529: --
530: hr_utility.set_location(' Leaving:'||l_proc, 10);
531: --
532: End ins_lck;
533: --
534: -- ----------------------------------------------------------------------------

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

545: l_validation_start_date date;
546: l_validation_end_date date;
547: --
548: Begin
549: hr_utility.set_location('Entering:'||l_proc, 5);
550: --
551: -- Call the lock operation
552: --
553: ins_lck

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

648: l_rec ben_vgs_shd.g_rec_type;
649: l_proc varchar2(72) := g_package||'ins';
650: --
651: Begin
652: hr_utility.set_location('Entering:'||l_proc, 5);
653: --
654: -- Call conversion function to turn arguments into the
655: -- p_rec structure.
656: --

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

715: p_effective_end_date := l_rec.effective_end_date;
716: p_object_version_number := l_rec.object_version_number;
717: --
718: --
719: hr_utility.set_location(' Leaving:'||l_proc, 10);
720: End ins;
721: --
722: end ben_vgs_ins;