DBA Data[Home] [Help]

APPS.PQP_UK_VEHICLE_TEMPLATE dependencies on HR_UTILITY

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

120: AND business_group_id is NULL;
121: --
122: BEGIN
123: --
124: hr_utility.set_location('Entering: '||l_proc, 10);
125: --
126: l_template_name := 'PQP MILEAGE CLAIM';
127: --
128: hr_utility.set_location(l_proc, 30);

Line 128: hr_utility.set_location(l_proc, 30);

124: hr_utility.set_location('Entering: '||l_proc, 10);
125: --
126: l_template_name := 'PQP MILEAGE CLAIM';
127: --
128: hr_utility.set_location(l_proc, 30);
129: --
130: for c4_rec in c4 loop
131: l_template_id := c4_rec.template_id;
132: end loop;

Line 134: hr_utility.set_location('Leaving: '||l_proc, 100);

130: for c4_rec in c4 loop
131: l_template_id := c4_rec.template_id;
132: end loop;
133: --
134: hr_utility.set_location('Leaving: '||l_proc, 100);
135: --
136: RETURN l_template_id;
137: --
138: END get_template_id;

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

459: AND ptco.template_id = psbt.template_id
460: AND ptco.shadow_object_id = psbt.balance_type_id;
461: --
462: BEGIN
463: hr_utility.set_location('Entering: '||l_proc, 10);
464: --
465: if p_object_type = 'ELE' then
466: for c2_rec in c2 (p_object_name) loop
467: l_object_id := c2_rec.element_type_id; -- element id

Line 475: hr_utility.set_location('Leaving: '||l_proc, 50);

471: l_object_id := c3_rec.core_object_id; -- balance id
472: end loop;
473: end if;
474: --
475: hr_utility.set_location('Leaving: '||l_proc, 50);
476: --
477: RETURN l_object_id;
478: --
479: END get_object_id;

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

481: --===============================================================================
482: -- MAIN FUNCTION
483: --===============================================================================
484: BEGIN
485: hr_utility.set_location('Entering : '||l_proc, 10);
486: ---------------------
487: -- Set session date
488: ---------------------
489:

Line 492: hr_utility.set_location(l_proc, 20);

488: ---------------------
489:
490: pay_db_pay_setup.set_session_date(nvl(p_ele_eff_start_date, sysdate));
491: --
492: hr_utility.set_location(l_proc, 20);
493: ---------------------------
494: -- Get Source Template ID
495: ---------------------------
496: l_source_template_id := get_template_id

Line 499: hr_utility.set_location(l_proc, 30);

495: ---------------------------
496: l_source_template_id := get_template_id
497: (p_legislation_code => 'GB'
498: );
499: hr_utility.set_location(l_proc, 30);
500: --
501: /*--------------------------------------------------------------------------
502: Create the user Structure
503: The Configuration Flex segments for the Exclusion Rules are as follows:

Line 644: hr_utility.set_location(l_proc, 80);

640: );
641: --
642:
643:
644: hr_utility.set_location(l_proc, 80);
645: ---------------------------------------------------------------------------
646: ---------------------------- Update Shadow Structure ----------------------
647: --
648:

Line 757: hr_utility.set_location(l_proc, 90);

753:
754:
755:
756:
757: hr_utility.set_location(l_proc, 90);
758: --
759: --
760: hr_utility.set_location(l_proc, 110);
761: ---------------------------------------------------------------------------

Line 760: hr_utility.set_location(l_proc, 110);

756:
757: hr_utility.set_location(l_proc, 90);
758: --
759: --
760: hr_utility.set_location(l_proc, 110);
761: ---------------------------------------------------------------------------
762: ---------------------------- Generate Core Objects ------------------------
763: ---------------------------------------------------------------------------
764:

Line 772: hr_utility.set_location(l_proc, 120);

768: ,p_hr_only => false
769: ,p_hr_to_payroll => false
770: ,p_template_id => l_template_id);
771: --
772: hr_utility.set_location(l_proc, 120);
773: --
774: pay_element_template_api.generate_part2
775: (p_validate => false
776: ,p_effective_date => p_ele_eff_start_date

Line 780: hr_utility.set_location(l_proc, 130);

776: ,p_effective_date => p_ele_eff_start_date
777: ,p_template_id => l_template_id);
778: --
779:
780: hr_utility.set_location(l_proc, 130);
781:
782: --IF p_veh_type='C' OR p_veh_type='P' THEN
783: ---delete_balance_feeds('NIable','Pay Value');
784: create_balance_feeds;

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

876: AND template_type = 'U';
877: --
878: BEGIN
879: --
880: hr_utility.set_location('Entering :'||l_proc, 10);
881: --
882: OPEN eei;
883: LOOP
884: FETCH eei INTO l_eei_info_id ;

Line 909: hr_utility.set_location('Leaving :'||l_proc, 50);

905: ,p_drop_formula_packages => true
906: ,p_template_id => l_template_id);
907: --
908:
909: hr_utility.set_location('Leaving :'||l_proc, 50);
910: --
911: END delete_user_template;
912: --
913: END pqp_uk_vehicle_template ;