DBA Data[Home] [Help]

APPS.HR_OPT_UPD dependencies on HR_UTILITY

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

57: --
58: l_proc varchar2(72) := g_package||'update_dml';
59: --
60: Begin
61: hr_utility.set_location('Entering:'||l_proc, 5);
62: --
63: -- Increment the object version
64: p_rec.object_version_number := p_rec.object_version_number + 1;
65: --

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

76: where option_id = p_rec.option_id;
77: --
78: --
79: --
80: hr_utility.set_location(' Leaving:'||l_proc, 10);
81: --
82: Exception
83: When hr_api.check_integrity_violated Then
84: -- A check constraint has been violated

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

143: select option_type_id
144: into l_option_type_id
145: from hr_ki_option_types
146: where option_type_key = 'PASSWORD';
147: hr_utility.set_location('Entering:'||l_proc, 5);
148:
149: --
150: if p_rec.option_type_id = l_option_type_id then
151: FND_VAULT.put('KI',p_rec.integration_id ||'#' || p_rec.option_type_id || '#' || p_rec.option_level_id || '#' || p_rec.option_id,p_rec.value);

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

159: /*if upper(p_rec.encrypted) ='Y' then
160: p_rec.value :=icx_call.encrypt(p_rec.value);
161: end if;*/
162:
163: hr_utility.set_location(' Leaving:'||l_proc, 10);
164: End pre_update;
165: --
166: -- ----------------------------------------------------------------------------
167: -- |-----------------------------< post_update >------------------------------|

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

202: --
203: l_proc varchar2(72) := g_package||'post_update';
204: --
205: Begin
206: hr_utility.set_location('Entering:'||l_proc, 5);
207: begin
208: --
209: hr_opt_rku.after_update
210: (

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

241: ,p_hook_type => 'AU');
242: --
243: end;
244: --
245: hr_utility.set_location(' Leaving:'||l_proc, 10);
246: End post_update;
247: --
248: -- ----------------------------------------------------------------------------
249: -- |-----------------------------< convert_defs >-----------------------------|

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

336: --
337: l_proc varchar2(72) := g_package||'upd';
338: --
339: Begin
340: hr_utility.set_location('Entering:'||l_proc, 5);
341: --
342: -- We must lock the row which we need to update.
343: --
344: hr_opt_shd.lck

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

394: l_rec hr_opt_shd.g_rec_type;
395: l_proc varchar2(72) := g_package||'upd';
396: --
397: Begin
398: hr_utility.set_location('Entering:'||l_proc, 5);
399: --
400: -- Call conversion function to turn arguments into the
401: -- l_rec structure.
402: --

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

421: l_rec
422: );
423: p_object_version_number := l_rec.object_version_number;
424: --
425: hr_utility.set_location(' Leaving:'||l_proc, 10);
426: End upd;
427: --
428: end hr_opt_upd;