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: -- Insert the row into: per_shared_types_tl
58: --

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

68: p_rec.source_lang,
69: p_rec.shared_type_name
70: );
71: --
72: hr_utility.set_location(' Leaving:'||l_proc, 10);
73: Exception
74: When hr_api.check_integrity_violated Then
75: -- A check constraint has been violated
76: per_stt_shd.constraint_error

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

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

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

133: hr_utility.set_location('Entering:'||l_proc, 5);
134: --
135: p_rec.shared_type_id := p_shared_type_id ;
136: --
137: hr_utility.set_location(' Leaving:'||l_proc, 10);
138: End pre_insert;
139: --
140: -- ----------------------------------------------------------------------------
141: -- |-----------------------------< post_insert >------------------------------|

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

173: --
174: l_proc varchar2(72) := g_package||'post_insert';
175: --
176: Begin
177: hr_utility.set_location('Entering:'||l_proc, 5);
178: --
179: --
180: -- Start of API User Hook for post_insert.
181: --

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

201: --
202: -- End of API User Hook for post_insert.
203: --
204: --
205: hr_utility.set_location(' Leaving:'||l_proc, 10);
206: End post_insert;
207: --
208: -- ----------------------------------------------------------------------------
209: -- |---------------------------------< ins >----------------------------------|

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

216: --
217: l_proc varchar2(72) := g_package||'ins';
218: --
219: Begin
220: hr_utility.set_location('Entering:'||l_proc, 5);
221: --
222: -- Call the supporting insert validate operations
223: --
224: per_stt_bus.insert_validate(p_rec);

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

251: l_rec per_stt_shd.g_rec_type;
252: l_proc varchar2(72) := g_package||'ins';
253: --
254: Begin
255: hr_utility.set_location('Entering:'||l_proc, 5);
256: --
257: -- Call conversion function to turn arguments into the
258: -- p_rec structure.
259: --

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

272: ins(p_rec => l_rec,
273: p_shared_type_id => p_shared_type_id );
274: --
275: --
276: hr_utility.set_location(' Leaving:'||l_proc, 10);
277: End ins;
278: --
279: procedure ins_tl (
280: p_language_code in varchar2,

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

289: where stt.shared_type_id = p_shared_type_id
290: and stt.language = l.language_code );
291: l_proc varchar2(72) := g_package||'ins_tl';
292: begin
293: hr_utility.set_location(' Entering:'||l_proc, 10);
294: for l_lang in csr_ins_langs loop
295: ins
296: (p_shared_type_id => p_shared_type_id,
297: p_shared_type_name => p_shared_type_name,

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

297: p_shared_type_name => p_shared_type_name,
298: p_language => l_lang.language_code,
299: p_source_lang => p_language_code) ;
300: end loop;
301: hr_utility.set_location(' Leaving:'||l_proc, 20);
302: end ins_tl;
303: --
304: end per_stt_ins;