DBA Data[Home] [Help]

APPS.HR_DTT_INS dependencies on HR_DTT_INS

Line 1: Package Body hr_dtt_ins as

1: Package Body hr_dtt_ins as
2: /* $Header: hrdttrhi.pkb 120.0 2005/05/30 23:52:36 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

Line 8: g_package varchar2(33) := ' hr_dtt_ins.'; -- Global package name

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' hr_dtt_ins.'; -- Global package name
9: --
10: -- ----------------------------------------------------------------------------
11: -- |------------------------------< insert_dml >------------------------------|
12: -- ----------------------------------------------------------------------------

Line 253: hr_dtt_ins.pre_insert

249: hr_multi_message.end_validation_set;
250: --
251: -- Call the supporting pre-insert operation
252: --
253: hr_dtt_ins.pre_insert
254: (p_rec => p_rec
255: ,p_document_type_id => p_document_type_id
256: );
257:

Line 262: hr_dtt_ins.insert_dml(p_rec);

258:
259: --
260: -- Insert the row
261: --
262: hr_dtt_ins.insert_dml(p_rec);
263:
264:
265: --
266: -- Call the supporting post-insert operation

Line 268: hr_dtt_ins.post_insert

264:
265: --
266: -- Call the supporting post-insert operation
267: --
268: hr_dtt_ins.post_insert
269: (p_rec
270: );
271:
272:

Line 316: hr_dtt_ins.ins

312: --
313: -- Having converted the arguments into the hr_dtt_rec
314: -- plsql record structure we call the corresponding record business process.
315: --
316: hr_dtt_ins.ins
317: (p_rec => l_rec
318: ,p_document_type_id => p_document_type_id
319: );
320:

Line 361: hr_dtt_ins.ins

357: --
358: -- Insert a row for the base language and every installed language.
359: --
360: for l_lang in csr_ins_langs loop
361: hr_dtt_ins.ins
362: (p_document_type_id => p_document_type_id
363: ,p_language => l_lang.language_code
364: ,p_source_language => p_language_code
365: ,p_document_type => p_document_type

Line 375: end hr_dtt_ins;

371:
372: hr_utility.set_location('Leaving:'||l_proc,20);
373: End ins_tl;
374: --
375: end hr_dtt_ins;