DBA Data[Home] [Help]

APPS.HR_QSV_UPD dependencies on HR_UTILITY

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

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

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

70: object_version_number = p_rec.object_version_number,
71: value = p_rec.value
72: where quest_answer_val_id = p_rec.quest_answer_val_id;
73: --
74: hr_utility.set_location(' Leaving:'||l_proc, 10);
75: --
76: Exception
77: When hr_api.check_integrity_violated Then
78: -- A check constraint has been violated

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

126: --
127: l_proc varchar2(72) := g_package||'pre_update';
128: --
129: Begin
130: hr_utility.set_location('Entering:'||l_proc, 5);
131: --
132: hr_utility.set_location(' Leaving:'||l_proc, 10);
133: End pre_update;
134: --

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

128: --
129: Begin
130: hr_utility.set_location('Entering:'||l_proc, 5);
131: --
132: hr_utility.set_location(' Leaving:'||l_proc, 10);
133: End pre_update;
134: --
135: -- ----------------------------------------------------------------------------
136: -- |-----------------------------< post_update >------------------------------|

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

168: --
169: l_proc varchar2(72) := g_package||'post_update';
170: --
171: Begin
172: hr_utility.set_location('Entering:'||l_proc, 5);
173: --
174: begin
175: hr_qsv_rku.after_update
176: (p_quest_answer_val_id => p_rec.quest_answer_val_id

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

190: ,p_hook_type => 'AU'
191: );
192: end;
193: --
194: hr_utility.set_location(' Leaving:'||l_proc, 10);
195: End post_update;
196: --
197: -- ----------------------------------------------------------------------------
198: -- |-----------------------------< convert_defs >-----------------------------|

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

243: l_proc varchar2(72) := g_package||'convert_defs';
244: --
245: Begin
246: --
247: hr_utility.set_location('Entering:'||l_proc, 5);
248: --
249: -- We must now examine each argument value in the
250: -- p_rec plsql record structure
251: -- to see if a system default is being used. If a system default

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

263: p_rec.value :=
264: hr_qsv_shd.g_old_rec.value;
265: End If;
266: --
267: hr_utility.set_location(' Leaving:'||l_proc, 10);
268: --
269: End convert_defs;
270: --
271: -- ----------------------------------------------------------------------------

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

278: --
279: l_proc varchar2(72) := g_package||'upd';
280: --
281: Begin
282: hr_utility.set_location('Entering:'||l_proc, 5);
283: --
284: -- We must lock the row which we need to update.
285: --
286: hr_qsv_shd.lck

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

324: l_rec hr_qsv_shd.g_rec_type;
325: l_proc varchar2(72) := g_package||'upd';
326: --
327: Begin
328: hr_utility.set_location('Entering:'||l_proc, 5);
329: --
330: -- Call conversion function to turn arguments into the
331: -- l_rec structure.
332: --

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

346: --
347: upd(l_rec);
348: p_object_version_number := l_rec.object_version_number;
349: --
350: hr_utility.set_location(' Leaving:'||l_proc, 10);
351: End upd;
352: --
353: end hr_qsv_upd;