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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

369: --
370: upd(l_rec, p_effective_date);
371: p_object_version_number := l_rec.object_version_number;
372: --
373: hr_utility.set_location(' Leaving:'||l_proc, 10);
374: End upd;
375: --
376: end hr_qsn_upd;