DBA Data[Home] [Help]

APPS.GHR_HISTORY_CONV_RG dependencies on GHR_PA_HISTORY

Line 631: -- ghr_pa_history record type

627: End Conv_to_people_rg;
628:
629:
630: -- procedure conv_people_rg_to_hist_rg converts the per_people_f record type to
631: -- ghr_pa_history record type
632:
633: Procedure conv_people_rg_to_hist_rg(
634: p_people_data in per_all_people_f%rowtype,
635: p_history_data in out nocopy ghr_pa_history%rowtype) as

Line 635: p_history_data in out nocopy ghr_pa_history%rowtype) as

631: -- ghr_pa_history record type
632:
633: Procedure conv_people_rg_to_hist_rg(
634: p_people_data in per_all_people_f%rowtype,
635: p_history_data in out nocopy ghr_pa_history%rowtype) as
636:
637: l_proc varchar2(30) := 'conv_people_rg_to_hist_rg';
638: l_history_data ghr_pa_history%rowtype;
639:

Line 638: l_history_data ghr_pa_history%rowtype;

634: p_people_data in per_all_people_f%rowtype,
635: p_history_data in out nocopy ghr_pa_history%rowtype) as
636:
637: l_proc varchar2(30) := 'conv_people_rg_to_hist_rg';
638: l_history_data ghr_pa_history%rowtype;
639:
640: begin
641: l_history_data := p_history_data; --NOCOPY CHANGES
642:

Line 781: -- procedure conv_hist_rg_to_people_rg converts the ghr_pa_history record type

777:
778: end conv_people_rg_to_hist_rg;
779:
780:
781: -- procedure conv_hist_rg_to_people_rg converts the ghr_pa_history record type
782: -- to per_people_rg
783:
784: Procedure conv_to_people_rg(
785: p_history_data in ghr_pa_history%rowtype,

Line 785: p_history_data in ghr_pa_history%rowtype,

781: -- procedure conv_hist_rg_to_people_rg converts the ghr_pa_history record type
782: -- to per_people_rg
783:
784: Procedure conv_to_people_rg(
785: p_history_data in ghr_pa_history%rowtype,
786: p_people_data in out nocopy per_all_people_f%rowtype) as
787:
788: l_proc varchar2(30) := 'conv_hist_rg_to_people_rg';
789: l_people_data per_all_people_f%rowtype;

Line 1226: -- type to ghr_pa_history record type

1222: end conv_to_asgnei_rg;
1223:
1224:
1225: -- Procedure conv_to_assigei_rg_hist_rg converts the per_assignment_extra_info record
1226: -- type to ghr_pa_history record type
1227: Procedure conv_asgnei_rg_to_hist_rg(
1228: p_asgnei_data in per_assignment_extra_info%rowtype,
1229: p_history_data in out nocopy ghr_pa_history%rowtype) is
1230:

Line 1229: p_history_data in out nocopy ghr_pa_history%rowtype) is

1225: -- Procedure conv_to_assigei_rg_hist_rg converts the per_assignment_extra_info record
1226: -- type to ghr_pa_history record type
1227: Procedure conv_asgnei_rg_to_hist_rg(
1228: p_asgnei_data in per_assignment_extra_info%rowtype,
1229: p_history_data in out nocopy ghr_pa_history%rowtype) is
1230:
1231: l_proc varchar2(30) := 'conv_asgnei_rg_to_hist_rg';
1232: l_history_data ghr_pa_history%rowtype;
1233:

Line 1232: l_history_data ghr_pa_history%rowtype;

1228: p_asgnei_data in per_assignment_extra_info%rowtype,
1229: p_history_data in out nocopy ghr_pa_history%rowtype) is
1230:
1231: l_proc varchar2(30) := 'conv_asgnei_rg_to_hist_rg';
1232: l_history_data ghr_pa_history%rowtype;
1233:
1234: begin
1235:
1236: l_history_data := p_history_data; --NOCOPY CHANGES

Line 1313: -- Procedure conv_hist_rg_to_asgei_rg converts the ghr_pa_history record type

1309: end conv_asgnei_rg_to_hist_rg;
1310:
1311:
1312:
1313: -- Procedure conv_hist_rg_to_asgei_rg converts the ghr_pa_history record type
1314: -- to per_assignment_extra_info record
1315: Procedure conv_to_asgnei_rg(
1316: p_history_data in ghr_pa_history%rowtype,
1317: p_asgnei_data in out nocopy per_assignment_extra_info%rowtype) is

Line 1316: p_history_data in ghr_pa_history%rowtype,

1312:
1313: -- Procedure conv_hist_rg_to_asgei_rg converts the ghr_pa_history record type
1314: -- to per_assignment_extra_info record
1315: Procedure conv_to_asgnei_rg(
1316: p_history_data in ghr_pa_history%rowtype,
1317: p_asgnei_data in out nocopy per_assignment_extra_info%rowtype) is
1318:
1319: l_proc varchar2(30) := 'conv_hist_rg_to_asgnei_rg';
1320: l_asgnei_data per_assignment_extra_info%rowtype;

Line 1788: -- ghr_pa_history record type

1784:
1785: End conv_to_asgn_rg;
1786:
1787: -- procedure convert_assignment_rg_hist_rg converts the per_assignments record type to
1788: -- ghr_pa_history record type
1789: procedure conv_asgn_rg_to_hist_rg(
1790: p_assignment_data in per_all_assignments_f%rowtype,
1791: p_history_data in out nocopy ghr_pa_history%rowtype) as
1792:

Line 1791: p_history_data in out nocopy ghr_pa_history%rowtype) as

1787: -- procedure convert_assignment_rg_hist_rg converts the per_assignments record type to
1788: -- ghr_pa_history record type
1789: procedure conv_asgn_rg_to_hist_rg(
1790: p_assignment_data in per_all_assignments_f%rowtype,
1791: p_history_data in out nocopy ghr_pa_history%rowtype) as
1792:
1793: l_proc varchar2(30) := 'convert_assignment_rg_hist_rg';
1794: l_history_data ghr_pa_history%rowtype;
1795: begin

Line 1794: l_history_data ghr_pa_history%rowtype;

1790: p_assignment_data in per_all_assignments_f%rowtype,
1791: p_history_data in out nocopy ghr_pa_history%rowtype) as
1792:
1793: l_proc varchar2(30) := 'convert_assignment_rg_hist_rg';
1794: l_history_data ghr_pa_history%rowtype;
1795: begin
1796:
1797: l_history_data := p_history_data; --NOCOPY CHANGES
1798: hr_utility.set_location('entering:'|| l_proc, 5);

Line 1898: p_history_data in ghr_pa_history%rowtype,

1894:
1895: -- procedure conv_hist_rg_to_asgn_rg converts the pa_history record to
1896: -- per_assignments record type
1897: procedure conv_to_asgn_rg(
1898: p_history_data in ghr_pa_history%rowtype,
1899: p_assignment_data in out nocopy per_all_assignments_f%rowtype) as
1900:
1901: l_proc varchar2(30) := 'conv_hist_rg_to_asgn_rg';
1902: l_assignment_data per_all_assignments_f%rowtype;

Line 2298: -- to ghr_pa_history record type

2294:
2295:
2296:
2297: -- procedure conv_peopleei_rg_to_hist_rg converts the per_people_extra_info record type
2298: -- to ghr_pa_history record type
2299: Procedure conv_peopleei_rg_to_hist_rg(
2300: p_people_ei_data in per_people_extra_info%rowtype,
2301: p_history_data in out nocopy ghr_pa_history%rowtype) as
2302:

Line 2301: p_history_data in out nocopy ghr_pa_history%rowtype) as

2297: -- procedure conv_peopleei_rg_to_hist_rg converts the per_people_extra_info record type
2298: -- to ghr_pa_history record type
2299: Procedure conv_peopleei_rg_to_hist_rg(
2300: p_people_ei_data in per_people_extra_info%rowtype,
2301: p_history_data in out nocopy ghr_pa_history%rowtype) as
2302:
2303: l_proc varchar2(30) := 'conv_peopleei_rg_to_hist_rg';
2304: l_history_data ghr_pa_history%rowtype;
2305: begin

Line 2304: l_history_data ghr_pa_history%rowtype;

2300: p_people_ei_data in per_people_extra_info%rowtype,
2301: p_history_data in out nocopy ghr_pa_history%rowtype) as
2302:
2303: l_proc varchar2(30) := 'conv_peopleei_rg_to_hist_rg';
2304: l_history_data ghr_pa_history%rowtype;
2305: begin
2306:
2307: l_history_data := p_history_data; --NOCOPY CHANGES
2308:

Line 2385: -- procedure conv_to_peopleei_rg converts the ghr_pa_history record type to

2381: -- rest of the fields are not yet mapped
2382:
2383: end conv_peopleei_rg_to_hist_rg;
2384:
2385: -- procedure conv_to_peopleei_rg converts the ghr_pa_history record type to
2386: -- per_people_extra_info type
2387: --
2388: Procedure conv_to_peopleei_rg(
2389: p_history_data in ghr_pa_history%rowtype,

Line 2389: p_history_data in ghr_pa_history%rowtype,

2385: -- procedure conv_to_peopleei_rg converts the ghr_pa_history record type to
2386: -- per_people_extra_info type
2387: --
2388: Procedure conv_to_peopleei_rg(
2389: p_history_data in ghr_pa_history%rowtype,
2390: p_people_ei_data in out nocopy per_people_extra_info%rowtype ) as
2391:
2392: l_proc varchar2(30) := 'conv_to_peopleei_rg';
2393: l_people_ei_data per_people_extra_info%rowtype;

Line 2768: -- ghr_pa_history record type

2764:
2765: End conv_to_positionei_rg;
2766:
2767: -- procedure convt_positionei_rg_to_hist_rg converts the per_element_entries record type to
2768: -- ghr_pa_history record type
2769: Procedure conv_positionei_rg_to_hist_rg(
2770: p_position_ei_data in per_position_extra_info%rowtype,
2771: p_history_data in out nocopy ghr_pa_history%rowtype) as
2772:

Line 2771: p_history_data in out nocopy ghr_pa_history%rowtype) as

2767: -- procedure convt_positionei_rg_to_hist_rg converts the per_element_entries record type to
2768: -- ghr_pa_history record type
2769: Procedure conv_positionei_rg_to_hist_rg(
2770: p_position_ei_data in per_position_extra_info%rowtype,
2771: p_history_data in out nocopy ghr_pa_history%rowtype) as
2772:
2773: l_proc varchar2(30) := 'convert_position_ei_rg_hist_rg';
2774: l_history_data ghr_pa_history%rowtype;
2775:

Line 2774: l_history_data ghr_pa_history%rowtype;

2770: p_position_ei_data in per_position_extra_info%rowtype,
2771: p_history_data in out nocopy ghr_pa_history%rowtype) as
2772:
2773: l_proc varchar2(30) := 'convert_position_ei_rg_hist_rg';
2774: l_history_data ghr_pa_history%rowtype;
2775:
2776: Begin
2777:
2778: l_history_data :=p_history_data; --NOCOPY CHANGES

Line 2852: -- procedure conv_to_positionei_rg converts the ghr_pa_history record type into

2848: raise;
2849: End conv_positionei_rg_to_hist_rg;
2850:
2851:
2852: -- procedure conv_to_positionei_rg converts the ghr_pa_history record type into
2853: -- per_element_entries record type
2854: Procedure conv_to_positionei_rg(
2855: p_history_data in ghr_pa_history%rowtype,
2856: p_position_ei_data in out nocopy per_position_extra_info%rowtype) as

Line 2855: p_history_data in ghr_pa_history%rowtype,

2851:
2852: -- procedure conv_to_positionei_rg converts the ghr_pa_history record type into
2853: -- per_element_entries record type
2854: Procedure conv_to_positionei_rg(
2855: p_history_data in ghr_pa_history%rowtype,
2856: p_position_ei_data in out nocopy per_position_extra_info%rowtype) as
2857:
2858: l_proc varchar2(30) := 'convert_position_ei_rg_hist_rg';
2859: l_position_ei_data per_position_extra_info%rowtype;

Line 3141: -- ghr_pa_history record type

3137: End conv_to_element_entry_rg;
3138:
3139:
3140: -- procedure convt_element_entry_rg_to_hist converts the per_ element_entries record type to
3141: -- ghr_pa_history record type
3142: procedure conv_element_entry_rg_to_hist(
3143: p_element_entries_data in pay_element_entries_f%rowtype,
3144: p_history_data in out nocopy ghr_pa_history%rowtype) as
3145:

Line 3144: p_history_data in out nocopy ghr_pa_history%rowtype) as

3140: -- procedure convt_element_entry_rg_to_hist converts the per_ element_entries record type to
3141: -- ghr_pa_history record type
3142: procedure conv_element_entry_rg_to_hist(
3143: p_element_entries_data in pay_element_entries_f%rowtype,
3144: p_history_data in out nocopy ghr_pa_history%rowtype) as
3145:
3146: l_proc varchar2(30) := 'convert_element_ent_rg_hist_rg';
3147: l_history_data ghr_pa_history%rowtype;
3148:

Line 3147: l_history_data ghr_pa_history%rowtype;

3143: p_element_entries_data in pay_element_entries_f%rowtype,
3144: p_history_data in out nocopy ghr_pa_history%rowtype) as
3145:
3146: l_proc varchar2(30) := 'convert_element_ent_rg_hist_rg';
3147: l_history_data ghr_pa_history%rowtype;
3148:
3149: begin
3150:
3151: l_history_data := p_history_data ; --NOCOPY CHANGES

Line 3205: --procedure conv_to_element_entry_rg converts the ghr_pa_history record type to

3201:
3202: end conv_element_entry_rg_to_hist;
3203:
3204:
3205: --procedure conv_to_element_entry_rg converts the ghr_pa_history record type to
3206: --per_element_entries_f record type
3207: procedure conv_to_element_entry_rg(
3208: p_history_data in ghr_pa_history%rowtype,
3209: p_element_entries_data in out nocopy pay_element_entries_f%rowtype) as

Line 3208: p_history_data in ghr_pa_history%rowtype,

3204:
3205: --procedure conv_to_element_entry_rg converts the ghr_pa_history record type to
3206: --per_element_entries_f record type
3207: procedure conv_to_element_entry_rg(
3208: p_history_data in ghr_pa_history%rowtype,
3209: p_element_entries_data in out nocopy pay_element_entries_f%rowtype) as
3210:
3211: l_proc varchar2(30) := 'conv_to_element_entry_rg';
3212: l_element_entries_data pay_element_entries_f%rowtype;

Line 3512: p_history_data in out nocopy ghr_pa_history%rowtype) as

3508: -- procedure conv_addresses_rg_to_hist_rg converts the addresses_rg record type to
3509: -- ghr_addresses_history record type
3510: Procedure conv_addresses_rg_to_hist_rg(
3511: p_addresses_data in per_addresses%rowtype,
3512: p_history_data in out nocopy ghr_pa_history%rowtype) as
3513:
3514: l_proc varchar2(30) := 'conv_addresses_rg_to_hist_rg';
3515: l_history_data ghr_pa_history%rowtype;
3516:

Line 3515: l_history_data ghr_pa_history%rowtype;

3511: p_addresses_data in per_addresses%rowtype,
3512: p_history_data in out nocopy ghr_pa_history%rowtype) as
3513:
3514: l_proc varchar2(30) := 'conv_addresses_rg_to_hist_rg';
3515: l_history_data ghr_pa_history%rowtype;
3516:
3517: begin
3518:
3519: l_history_data := p_history_data ; --NOCOPY CHANGES

Line 3587: p_history_data in ghr_pa_history%rowtype,

3583:
3584: --procedure conv_to_addresses_rg converts the ghr_addresses_history
3585: --record type to addresses_rg
3586: Procedure conv_to_addresses_rg(
3587: p_history_data in ghr_pa_history%rowtype,
3588: p_addresses_data in out nocopy per_addresses%rowtype) as
3589:
3590: l_proc varchar2(30) := 'conv_addresses_rg_to_hist_rg';
3591: l_addresses_data per_addresses%rowtype;

Line 3726: p_history_data in out nocopy ghr_pa_history%rowtype) is

3722:
3723:
3724: procedure conv_element_entval_rg_to_hist(
3725: p_element_entval_data in pay_element_entry_values_f%rowtype,
3726: p_history_data in out nocopy ghr_pa_history%rowtype) is
3727:
3728: l_proc varchar2(30):='conv_to_element_entval_rg';
3729: l_history_data ghr_pa_history%rowtype;
3730:

Line 3729: l_history_data ghr_pa_history%rowtype;

3725: p_element_entval_data in pay_element_entry_values_f%rowtype,
3726: p_history_data in out nocopy ghr_pa_history%rowtype) is
3727:
3728: l_proc varchar2(30):='conv_to_element_entval_rg';
3729: l_history_data ghr_pa_history%rowtype;
3730:
3731: Begin
3732:
3733: l_history_data :=p_history_data; --NOCOPY CHANGES

Line 3754: p_history_data in ghr_pa_history%rowtype,

3750:
3751: End conv_element_entval_rg_to_hist;
3752:
3753: procedure conv_to_element_entval_rg(
3754: p_history_data in ghr_pa_history%rowtype,
3755: p_element_entval_data in out nocopy pay_element_entry_values_f%rowtype) is
3756:
3757: l_proc varchar2(30):='conv_to_element_entval_rg';
3758: l_element_entval_data pay_element_entry_values_f%rowtype;

Line 3787: p_history_data in out nocopy ghr_pa_history%rowtype) as

3783: -- procedure conv_peranalyses_rg_to_hist_rg converts the person_analyses_rg
3784: -- record type to ghr_person_analyses_history record type
3785: Procedure conv_peranalyses_rg_to_hist_rg(
3786: p_peranalyses_data in per_person_analyses%rowtype,
3787: p_history_data in out nocopy ghr_pa_history%rowtype) as
3788:
3789: l_proc varchar2(30) := 'conv_peranalyses_rg_to_hist_rg';
3790: l_history_data ghr_pa_history%rowtype;
3791:

Line 3790: l_history_data ghr_pa_history%rowtype;

3786: p_peranalyses_data in per_person_analyses%rowtype,
3787: p_history_data in out nocopy ghr_pa_history%rowtype) as
3788:
3789: l_proc varchar2(30) := 'conv_peranalyses_rg_to_hist_rg';
3790: l_history_data ghr_pa_history%rowtype;
3791:
3792: begin
3793:
3794: l_history_data :=p_history_data; --NOCOPY CHANGES

Line 3845: p_history_data in ghr_pa_history%rowtype,

3841:
3842: --procedure conv_to_peranalyses_rg converts the ghr_person_analyses_history
3843: --record type to person analysis_rg
3844: Procedure conv_to_peranalyses_rg(
3845: p_history_data in ghr_pa_history%rowtype,
3846: p_peranalyses_data in out nocopy per_person_analyses%rowtype) as
3847:
3848: l_proc varchar2(30) := 'conv_to_peranalyses_rg';
3849: l_peranalyses_data per_person_analyses%rowtype;

Line 4420: -- ghr_pa_history record type

4416:
4417: End Conv_to_position_rg;
4418: --
4419: -- procedure to convert Position RG to Position History RG
4420: -- ghr_pa_history record type
4421: --
4422: Procedure conv_position_rg_to_hist_rg(
4423: p_position_data in per_positions%rowtype,
4424: p_history_data in out ghr_pa_history%rowtype) as

Line 4424: p_history_data in out ghr_pa_history%rowtype) as

4420: -- ghr_pa_history record type
4421: --
4422: Procedure conv_position_rg_to_hist_rg(
4423: p_position_data in per_positions%rowtype,
4424: p_history_data in out ghr_pa_history%rowtype) as
4425:
4426: l_proc varchar2(30) := 'conv_position_rg_to_hist_rg';
4427:
4428: begin

Line 4482: p_history_data in ghr_pa_history%rowtype,

4478: --
4479: -- Procedure to convert history RG to Position RG
4480: --
4481: Procedure conv_to_position_rg(
4482: p_history_data in ghr_pa_history%rowtype,
4483: p_position_data in out per_positions%rowtype) as
4484:
4485: l_proc varchar2(30) := 'conv_to_position_rg';
4486:

Line 5107: -- ghr_pa_history record type

5103:
5104: End Conv_to_position_rg;
5105: --
5106: -- procedure to convert Position RG to Position History RG
5107: -- ghr_pa_history record type
5108: --
5109: Procedure conv_position_rg_to_hist_rg(
5110: p_position_data in hr_all_positions_f%rowtype,
5111: p_history_data in out nocopy ghr_pa_history%rowtype) as

Line 5111: p_history_data in out nocopy ghr_pa_history%rowtype) as

5107: -- ghr_pa_history record type
5108: --
5109: Procedure conv_position_rg_to_hist_rg(
5110: p_position_data in hr_all_positions_f%rowtype,
5111: p_history_data in out nocopy ghr_pa_history%rowtype) as
5112:
5113: l_proc varchar2(30) := 'conv_position_rg_to_hist_rg';
5114: l_history_data ghr_pa_history%rowtype ;
5115:

Line 5114: l_history_data ghr_pa_history%rowtype ;

5110: p_position_data in hr_all_positions_f%rowtype,
5111: p_history_data in out nocopy ghr_pa_history%rowtype) as
5112:
5113: l_proc varchar2(30) := 'conv_position_rg_to_hist_rg';
5114: l_history_data ghr_pa_history%rowtype ;
5115:
5116: begin
5117:
5118: l_history_data :=p_history_data; --NOCOPY CHANGES

Line 5265: p_history_data in ghr_pa_history%rowtype,

5261: --
5262: -- Procedure to convert history RG to Position RG
5263: --
5264: Procedure conv_to_position_rg(
5265: p_history_data in ghr_pa_history%rowtype,
5266: p_position_data in out nocopy hr_all_positions_f%rowtype) as
5267:
5268: l_proc varchar2(30) := 'conv_to_position_rg';
5269: l_position_data hr_all_positions_f%rowtype ;