DBA Data[Home] [Help]

APPS.PER_STT_INS dependencies on HR_UTILITY

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

50: --
51: l_proc varchar2(72) := g_package||'insert_dml';
52: --
53: Begin
54: hr_utility.set_location('Entering:'||l_proc, 5);
55: --
56: --
57: -- Added the following code as a part of Zero Downtime Patching Project.
58: -- Code Starts Here.

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

83: p_rec.source_lang,
84: p_rec.shared_type_name
85: );
86: --
87: hr_utility.set_location(' Leaving:'||l_proc, 10);
88: Exception
89: When hr_api.check_integrity_violated Then
90: -- A check constraint has been violated
91: per_stt_shd.constraint_error

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

144: --
145: l_proc varchar2(72) := g_package||'pre_insert';
146: --
147: Begin
148: hr_utility.set_location('Entering:'||l_proc, 5);
149: --
150: p_rec.shared_type_id := p_shared_type_id ;
151: --
152: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

148: hr_utility.set_location('Entering:'||l_proc, 5);
149: --
150: p_rec.shared_type_id := p_shared_type_id ;
151: --
152: hr_utility.set_location(' Leaving:'||l_proc, 10);
153: End pre_insert;
154: --
155: -- ----------------------------------------------------------------------------
156: -- |-----------------------------< post_insert >------------------------------|

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

188: --
189: l_proc varchar2(72) := g_package||'post_insert';
190: --
191: Begin
192: hr_utility.set_location('Entering:'||l_proc, 5);
193: --
194: --
195: -- Start of API User Hook for post_insert.
196: --

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

216: --
217: -- End of API User Hook for post_insert.
218: --
219: --
220: hr_utility.set_location(' Leaving:'||l_proc, 10);
221: End post_insert;
222: --
223: -- ----------------------------------------------------------------------------
224: -- |---------------------------------< ins >----------------------------------|

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

231: --
232: l_proc varchar2(72) := g_package||'ins';
233: --
234: Begin
235: hr_utility.set_location('Entering:'||l_proc, 5);
236: --
237: -- Call the supporting insert validate operations
238: --
239: per_stt_bus.insert_validate(p_rec);

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

266: l_rec per_stt_shd.g_rec_type;
267: l_proc varchar2(72) := g_package||'ins';
268: --
269: Begin
270: hr_utility.set_location('Entering:'||l_proc, 5);
271: --
272: -- Call conversion function to turn arguments into the
273: -- p_rec structure.
274: --

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

287: ins(p_rec => l_rec,
288: p_shared_type_id => p_shared_type_id );
289: --
290: --
291: hr_utility.set_location(' Leaving:'||l_proc, 10);
292: End ins;
293: --
294: procedure ins_tl (
295: p_language_code in varchar2,

Line 308: hr_utility.set_location(' Entering:'||l_proc, 10);

304: where stt.shared_type_id = p_shared_type_id
305: and stt.language = l.language_code );
306: l_proc varchar2(72) := g_package||'ins_tl';
307: begin
308: hr_utility.set_location(' Entering:'||l_proc, 10);
309: for l_lang in csr_ins_langs loop
310: ins
311: (p_shared_type_id => p_shared_type_id,
312: p_shared_type_name => p_shared_type_name,

Line 316: hr_utility.set_location(' Leaving:'||l_proc, 20);

312: p_shared_type_name => p_shared_type_name,
313: p_language => l_lang.language_code,
314: p_source_lang => p_language_code) ;
315: end loop;
316: hr_utility.set_location(' Leaving:'||l_proc, 20);
317: end ins_tl;
318: --
319: end per_stt_ins;