DBA Data[Home] [Help]

APPS.PQH_DOA_INS dependencies on PQH_DOA_INS

Line 1: Package Body pqh_doa_ins as

1: Package Body pqh_doa_ins as
2: /* $Header: pqdoarhi.pkb 115.0 2003/01/06 09:20:29 svorugan noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pqh_doa_ins.'; -- Global package name
9: --
10: -- The following global variables are only to be used by
11: -- the set_base_key_value and pre_insert procedures.
12: --

Line 26: pqh_doa_ins.g_document_attribute_id_i := p_document_attribute_id;

22: --
23: Begin
24: hr_utility.set_location('Entering:'||l_proc, 10);
25: --
26: pqh_doa_ins.g_document_attribute_id_i := p_document_attribute_id;
27: --
28: hr_utility.set_location(' Leaving:'||l_proc, 20);
29: End set_base_key_value;
30: --

Line 220: pqh_doa_ins.dt_insert_dml

216: --
217: Begin
218: hr_utility.set_location('Entering:'||l_proc, 5);
219: --
220: pqh_doa_ins.dt_insert_dml
221: (p_rec => p_rec
222: ,p_effective_date => p_effective_date
223: ,p_datetrack_mode => p_datetrack_mode
224: ,p_validation_start_date => p_validation_start_date

Line 284: pqh_doa_ins.g_document_attribute_id_i;

280: Cursor C_Sel2 is
281: Select null
282: from pqh_document_attributes_f
283: where document_attribute_id =
284: pqh_doa_ins.g_document_attribute_id_i;
285: --
286: l_proc varchar2(72) := g_package||'pre_insert';
287: l_exists varchar2(1);
288: --

Line 292: If (pqh_doa_ins.g_document_attribute_id_i is not null) Then

288: --
289: Begin
290: hr_utility.set_location('Entering:'||l_proc, 5);
291: --
292: If (pqh_doa_ins.g_document_attribute_id_i is not null) Then
293: --
294: -- Verify registered primary key values not already in use
295: --
296: Open C_Sel2;

Line 312: pqh_doa_ins.g_document_attribute_id_i;

308: --
309: -- Use registered key values and clear globals
310: --
311: p_rec.document_attribute_id :=
312: pqh_doa_ins.g_document_attribute_id_i;
313: pqh_doa_ins.g_document_attribute_id_i := null;
314: Else
315: --
316: -- No registerd key values, so select the next sequence number

Line 313: pqh_doa_ins.g_document_attribute_id_i := null;

309: -- Use registered key values and clear globals
310: --
311: p_rec.document_attribute_id :=
312: pqh_doa_ins.g_document_attribute_id_i;
313: pqh_doa_ins.g_document_attribute_id_i := null;
314: Else
315: --
316: -- No registerd key values, so select the next sequence number
317: --

Line 504: pqh_doa_ins.ins_lck

500: hr_utility.set_location('Entering:'||l_proc, 5);
501: --
502: -- Call the lock operation
503: --
504: pqh_doa_ins.ins_lck
505: (p_effective_date => p_effective_date
506: ,p_datetrack_mode => l_datetrack_mode
507: ,p_rec => p_rec
508: ,p_validation_start_date => l_validation_start_date

Line 527: pqh_doa_ins.pre_insert

523: hr_multi_message.end_validation_set;
524: --
525: -- Call the supporting pre-insert operation
526: --
527: pqh_doa_ins.pre_insert
528: (p_rec => p_rec
529: ,p_effective_date => p_effective_date
530: ,p_datetrack_mode => l_datetrack_mode
531: ,p_validation_start_date => l_validation_start_date

Line 537: pqh_doa_ins.insert_dml

533: );
534: --
535: -- Insert the row
536: --
537: pqh_doa_ins.insert_dml
538: (p_rec => p_rec
539: ,p_effective_date => p_effective_date
540: ,p_datetrack_mode => l_datetrack_mode
541: ,p_validation_start_date => l_validation_start_date

Line 547: pqh_doa_ins.post_insert

543: );
544: --
545: -- Call the supporting post-insert operation
546: --
547: pqh_doa_ins.post_insert
548: (p_rec => p_rec
549: ,p_effective_date => p_effective_date
550: ,p_datetrack_mode => l_datetrack_mode
551: ,p_validation_start_date => l_validation_start_date

Line 599: pqh_doa_ins.ins

595: -- Having converted the arguments into the pqh_doa_rec
596: -- plsql record structure we call the corresponding record
597: -- business process.
598: --
599: pqh_doa_ins.ins
600: (p_effective_date
601: ,l_rec
602: );
603: --

Line 615: end pqh_doa_ins;

611: --
612: hr_utility.set_location(' Leaving:'||l_proc, 10);
613: End ins;
614: --
615: end pqh_doa_ins;