DBA Data[Home] [Help]

APPS.HR_QSN_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 77: hr_utility.set_location(' Leaving:'||l_proc, 10);

73: quest.quest_type_code= p_rec.quest_type_code,
74: quest.object_version_number = p_rec.object_version_number
75: where quest.questionnaire_template_id = p_rec.questionnaire_template_id;
76: --
77: hr_utility.set_location(' Leaving:'||l_proc, 10);
78: --
79: Exception
80: When hr_api.check_integrity_violated Then
81: -- A check constraint has been violated

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

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

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

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

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

173: --
174: l_proc varchar2(72) := g_package||'post_update';
175: --
176: Begin
177: hr_utility.set_location('Entering:'||l_proc, 5);
178: --
179: begin
180: hr_qsn_rku.after_update
181: (p_questionnaire_template_id => p_rec.questionnaire_template_id

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

198: (p_module_name => 'HR_QUESTIONNAIRES'
199: ,p_hook_type => 'AU'
200: );
201: end;
202: hr_utility.set_location(' Leaving:'||l_proc, 10);
203: End post_update;
204: --
205: -- ----------------------------------------------------------------------------
206: -- |-----------------------------< convert_defs >-----------------------------|

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

251: l_proc varchar2(72) := g_package||'convert_defs';
252: --
253: Begin
254: --
255: hr_utility.set_location('Entering:'||l_proc, 5);
256: --
257: -- We must now examine each argument value in the
258: -- p_rec plsql record structure
259: -- to see if a system default is being used. If a system default

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

276: hr_qsn_shd.g_old_rec.business_group_id;
277: End If;
278:
279: --
280: hr_utility.set_location(' Leaving:'||l_proc, 10);
281: --
282: End convert_defs;
283: --
284: -- ----------------------------------------------------------------------------

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

292: --
293: l_proc varchar2(72) := g_package||'upd';
294: --
295: Begin
296: hr_utility.set_location('Entering:'||l_proc, 5);
297: --
298: -- We must lock the row which we need to update.
299: --
300: hr_qsn_shd.lck

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

349: l_rec hr_qsn_shd.g_rec_type;
350: l_proc varchar2(72) := g_package||'upd';
351: --
352: Begin
353: hr_utility.set_location('Entering:'||l_proc, 5);
354: --
355: -- Call conversion function to turn arguments into the
356: -- l_rec structure.
357: --

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

373: --
374: upd(l_rec, p_effective_date);
375: p_object_version_number := l_rec.object_version_number;
376: --
377: hr_utility.set_location(' Leaving:'||l_proc, 10);
378: End upd;
379: --
380: end hr_qsn_upd;