DBA Data[Home] [Help]

APPS.GHR_HISTORY_CONV_RG dependencies on PER_ALL_PEOPLE_F

Line 212: p_people_data in out nocopy per_all_people_f%rowtype ) is

208: p_per_information30 in per_people_f.per_information30%type default null,
209: -- p_object_version_number in per_people_f.object_version_number%type default null,
210: p_date_of_death in per_people_f.date_of_death%type default null,
211: p_rehire_reason in per_people_f.rehire_reason%type default null,
212: p_people_data in out nocopy per_all_people_f%rowtype ) is
213:
214: l_proc varchar2(30):='conv_to_people_rg';
215: l_people_data per_all_people_f%rowtype;
216:

Line 215: l_people_data per_all_people_f%rowtype;

211: p_rehire_reason in per_people_f.rehire_reason%type default null,
212: p_people_data in out nocopy per_all_people_f%rowtype ) is
213:
214: l_proc varchar2(30):='conv_to_people_rg';
215: l_people_data per_all_people_f%rowtype;
216:
217: begin
218:
219: l_people_data :=p_people_data; --NOCOPY Changes

Line 483: p_people_data out nocopy per_all_people_f%rowtype) is

479: end conv_to_people_rg;
480:
481:
482: Procedure conv_to_people_rg (p_people_h_v in ghr_people_h_v%rowtype,
483: p_people_data out nocopy per_all_people_f%rowtype) is
484:
485: l_proc varchar2(30):='Conv_to_people_rg';
486: l_people_data per_all_people_f%rowtype;
487:

Line 486: l_people_data per_all_people_f%rowtype;

482: Procedure conv_to_people_rg (p_people_h_v in ghr_people_h_v%rowtype,
483: p_people_data out nocopy per_all_people_f%rowtype) is
484:
485: l_proc varchar2(30):='Conv_to_people_rg';
486: l_people_data per_all_people_f%rowtype;
487:
488: Begin
489: hr_utility.set_location('Entering : ' || l_proc, 100);
490:

Line 634: p_people_data in per_all_people_f%rowtype,

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
636:
637: l_proc varchar2(30) := 'conv_people_rg_to_hist_rg';
638: l_history_data ghr_pa_history%rowtype;

Line 786: p_people_data in out nocopy per_all_people_f%rowtype) as

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;
790:

Line 789: l_people_data per_all_people_f%rowtype;

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;
790:
791: begin
792:
793: l_people_data :=p_people_data; --NOCOPY CHANGES