DBA Data[Home] [Help]

APPS.PQH_TEM_DEL dependencies on HR_UTILITY

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

46: --
47: l_proc varchar2(72) := g_package||'delete_dml';
48: --
49: Begin
50: hr_utility.set_location('Entering:'||l_proc, 5);
51: --
52: PER_RIC_PKG.chk_integrity(
53: p_entity_name=>'PQH_TEMPLATES',
54: p_ref_entity_info =>

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

68: delete from pqh_templates
69: where template_id = p_rec.template_id;
70: --
71: --
72: hr_utility.set_location(' Leaving:'||l_proc, 10);
73: --
74: Exception
75: When hr_api.child_integrity_violated then
76: -- Child integrity has been violated

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

116: --
117: l_proc varchar2(72) := g_package||'pre_delete';
118: --
119: Begin
120: hr_utility.set_location('Entering:'||l_proc, 5);
121: --
122: hr_utility.set_location(' Leaving:'||l_proc, 10);
123: End pre_delete;
124: --

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

118: --
119: Begin
120: hr_utility.set_location('Entering:'||l_proc, 5);
121: --
122: hr_utility.set_location(' Leaving:'||l_proc, 10);
123: End pre_delete;
124: --
125: -- ----------------------------------------------------------------------------
126: -- |-----------------------------< post_delete >------------------------------|

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

159: --
160: l_proc varchar2(72) := g_package||'post_delete';
161: --
162: Begin
163: hr_utility.set_location('Entering:'||l_proc, 5);
164: --
165: --
166: -- Start of API User Hook for post_delete.
167: --

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

195: --
196: -- End of API User Hook for post_delete.
197: --
198: --
199: hr_utility.set_location(' Leaving:'||l_proc, 10);
200: End post_delete;
201: --
202: -- ----------------------------------------------------------------------------
203: -- |---------------------------------< del >----------------------------------|

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

210: --
211: l_proc varchar2(72) := g_package||'del';
212: --
213: Begin
214: hr_utility.set_location('Entering:'||l_proc, 5);
215: --
216: -- We must lock the row which we need to delete.
217: --
218: pqh_tem_shd.lck

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

253: l_rec pqh_tem_shd.g_rec_type;
254: l_proc varchar2(72) := g_package||'del';
255: --
256: Begin
257: hr_utility.set_location('Entering:'||l_proc, 5);
258: --
259: -- As the delete procedure accepts a plsql record structure we do need to
260: -- convert the arguments into the record structure.
261: -- We don't need to call the supplied conversion argument routine as we

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

270: --
271: del(
272: p_effective_date,l_rec);
273: --
274: hr_utility.set_location(' Leaving:'||l_proc, 10);
275: End del;
276: --
277: end pqh_tem_del;