DBA Data[Home] [Help]

APPS.HR_EX_EMPLOYEE_INTERNAL dependencies on STANDARD

Line 23: ,p_last_standard_process_date in out nocopy date

19: ,p_termination_accepted_person in number default hr_api.g_number
20: ,p_accepted_termination_date in date default hr_api.g_date
21: ,p_actual_termination_date in date default hr_api.g_date
22: ,p_final_process_date in out nocopy date
23: ,p_last_standard_process_date in out nocopy date
24: ,p_leaving_reason in varchar2 default hr_api.g_varchar2
25: ,p_comments in varchar2 default hr_api.g_varchar2
26: ,p_notified_termination_date in date default hr_api.g_date
27: ,p_projected_termination_date in date default hr_api.g_date

Line 108: ,p_last_standard_process_date => p_last_standard_process_date

104: ,p_termination_accepted_person => p_termination_accepted_person
105: ,p_accepted_termination_date => p_accepted_termination_date
106: ,p_actual_termination_date => p_actual_termination_date
107: ,p_final_process_date => p_final_process_date
108: ,p_last_standard_process_date => p_last_standard_process_date
109: ,p_leaving_reason => p_leaving_reason
110: ,p_comments => p_comments
111: ,p_notified_termination_date => p_notified_termination_date
112: ,p_projected_termination_date => p_projected_termination_date

Line 197: ,p_last_standard_process_date in out nocopy date

193: ,p_termination_accepted_person in number default hr_api.g_number
194: ,p_accepted_termination_date in date default hr_api.g_date
195: ,p_actual_termination_date in date default hr_api.g_date
196: ,p_final_process_date in out nocopy date
197: ,p_last_standard_process_date in out nocopy date
198: ,p_leaving_reason in varchar2 default hr_api.g_varchar2
199: ,p_comments in varchar2 default hr_api.g_varchar2
200: ,p_notified_termination_date in date default hr_api.g_date
201: ,p_projected_termination_date in date default hr_api.g_date

Line 405: hr_utility.set_location('LSPD '||to_char(p_last_standard_process_date,

401: fetch csr_get_pds_details
402: into l_cur_pds;
403: close csr_get_pds_details;
404:
405: hr_utility.set_location('LSPD '||to_char(p_last_standard_process_date,
406: 'dd-mon-yyyy'),20);
407: begin
408: /*
409: ** Set global variable so that the ATD is available to

Line 426: ,p_last_standard_process_date => p_last_standard_process_date

422: --
423: -- 120.2 (START)
424: --
425: ,p_actual_termination_date => p_actual_termination_date
426: ,p_last_standard_process_date => p_last_standard_process_date
427: ,p_final_process_date => p_final_process_date
428: --
429: -- 120.2 (END)
430: --

Line 776: ( l_pds_rec.last_standard_process_date is null

772: */
773: if ( l_pds_rec.actual_termination_date is null
774: and p_actual_termination_date is not null)
775: OR
776: ( l_pds_rec.last_standard_process_date is null
777: and p_last_standard_process_date is not null)
778: then
779: l_last_std_process_date_in := p_last_standard_process_date;
780: --

Line 777: and p_last_standard_process_date is not null)

773: if ( l_pds_rec.actual_termination_date is null
774: and p_actual_termination_date is not null)
775: OR
776: ( l_pds_rec.last_standard_process_date is null
777: and p_last_standard_process_date is not null)
778: then
779: l_last_std_process_date_in := p_last_standard_process_date;
780: --
781: -- 120.2 (START)

Line 779: l_last_std_process_date_in := p_last_standard_process_date;

775: OR
776: ( l_pds_rec.last_standard_process_date is null
777: and p_last_standard_process_date is not null)
778: then
779: l_last_std_process_date_in := p_last_standard_process_date;
780: --
781: -- 120.2 (START)
782: --
783: if l_pds_rec.actual_termination_date is null then

Line 788: if l_pds_rec.last_standard_process_date is null then

784: l_atd_new := 1;
785: else
786: l_atd_new := 0;
787: end if;
788: if l_pds_rec.last_standard_process_date is null then
789: l_lspd_new := 1;
790: else
791: l_lspd_new := 0;
792: end if;

Line 810: ,p_last_standard_process_date => l_last_std_process_date_in

806: (p_effective_date => p_effective_date
807: ,p_period_of_service_id => p_period_of_service_id
808: ,p_object_version_number => p_object_version_number
809: ,p_actual_termination_date => p_actual_termination_date
810: ,p_last_standard_process_date => l_last_std_process_date_in
811: ,p_person_type_id => p_person_type_id
812: ,p_assignment_status_type_id => p_assignment_status_type_id
813: ,p_leaving_reason => p_leaving_reason
814: --

Line 893: p_last_standard_process_date := l_last_std_process_date_out;

889: -- 120.2 (END)
890: --
891: );
892:
893: p_last_standard_process_date := l_last_std_process_date_out;
894: --
895: -- 120.2 (START)
896: --
897: p_alu_change_warning := l_alu_change_warning;