DBA Data[Home] [Help]

APPS.HR_PROCESS_ASSIGNMENT_SS dependencies on HR_PROCESS_ASSIGNMENT_SS

Line 1: PACKAGE body hr_process_assignment_ss AS

1: PACKAGE body hr_process_assignment_ss AS
2: /* $Header: hrascwrs.pkb 120.37.12020000.5 2012/07/04 22:07:43 amnaraya ship $*/
3:
4:
5: g_package constant varchar2(75):='HR_PROCESS_ASSIGNMENT_SS.';

Line 5: g_package constant varchar2(75):='HR_PROCESS_ASSIGNMENT_SS.';

1: PACKAGE body hr_process_assignment_ss AS
2: /* $Header: hrascwrs.pkb 120.37.12020000.5 2012/07/04 22:07:43 amnaraya ship $*/
3:
4:
5: g_package constant varchar2(75):='HR_PROCESS_ASSIGNMENT_SS.';
6: g_api_name constant varchar2(75):=g_package || 'PROCESS_API';
7: g_data_error exception;
8: --g_date_format constant varchar2(10):='RRRR/MM/DD';
9: g_registration boolean :=false;

Line 2461: p_flow_mode = hr_process_assignment_ss.g_new_hire_registration

2457: l_object_version_number := p_object_version_number;
2458:
2459: -- first check if this is being called for registration.
2460: if p_flow_mode is not null and
2461: p_flow_mode = hr_process_assignment_ss.g_new_hire_registration
2462: then
2463: hr_utility.set_location('p_flow_mode = hr_process_assignment_ss.g_new_hire_registration:'||l_proc,10);
2464: g_registration := true;
2465: end if;

Line 2463: hr_utility.set_location('p_flow_mode = hr_process_assignment_ss.g_new_hire_registration:'||l_proc,10);

2459: -- first check if this is being called for registration.
2460: if p_flow_mode is not null and
2461: p_flow_mode = hr_process_assignment_ss.g_new_hire_registration
2462: then
2463: hr_utility.set_location('p_flow_mode = hr_process_assignment_ss.g_new_hire_registration:'||l_proc,10);
2464: g_registration := true;
2465: end if;
2466:
2467: -- validate seesion

Line 2552: hr_process_assignment_ss.gv_ele_warning) THEN

2548: p_item_type => l_item_type,
2549: p_item_key => l_item_key,
2550: p_actid => l_activity_id,
2551: p_web_page_section_code =>
2552: hr_process_assignment_ss.gv_ele_warning) THEN
2553: if(hr_mee_workflow_service.get_web_page_code(
2554: p_item_type => l_item_type,
2555: p_item_key => l_item_key,
2556: p_actID => l_activity_id,

Line 2557: p_web_page_section_code =>hr_process_assignment_ss.gv_ele_warning)

2553: if(hr_mee_workflow_service.get_web_page_code(
2554: p_item_type => l_item_type,
2555: p_item_key => l_item_key,
2556: p_actID => l_activity_id,
2557: p_web_page_section_code =>hr_process_assignment_ss.gv_ele_warning)
2558: = 'Y') then
2559: l_element_warning:=TRUE;
2560: else
2561: l_element_warning:=FALSE;

Line 2645: p_flow_mode = hr_process_assignment_ss.g_new_hire_registration) OR (nvl(l_re_hire_flow,'N') = 'EX_EMP')

2641: l_datetrack_update_mode:='UPDATE';
2642:
2643: -- registration always need this as Correction.
2644: if (p_flow_mode is not null and
2645: p_flow_mode = hr_process_assignment_ss.g_new_hire_registration) OR (nvl(l_re_hire_flow,'N') = 'EX_EMP')
2646: then
2647: hr_utility.set_location('p_flow_mode is not null and: NewHireReg'||l_proc,35);
2648: l_datetrack_update_mode := 'CORRECTION';
2649: end if;

Line 4379: p_flow_mode = hr_process_assignment_ss.g_new_hire_registration

4375: -- commit to the transaction tables if the data is not changed and in turn was not letting the
4376: -- rollback call to execute .
4377:
4378: if p_flow_mode is not null and
4379: p_flow_mode = hr_process_assignment_ss.g_new_hire_registration
4380: then
4381: i_changed := TRUE;
4382: end if;
4383: -- Code end for registration.

Line 4593: p_flow_mode = hr_process_assignment_ss.g_new_hire_registration

4589: p_ltt_salary_data => ltt_salary_data);
4590: -- In case of SFL for new hire, we are getting new salary
4591: -- so we are setting current salary to zero
4592: if p_flow_mode is not null and
4593: p_flow_mode = hr_process_assignment_ss.g_new_hire_registration
4594: then
4595: ltt_salary_data(1).current_salary := 0;
4596: end if;
4597: -- end of fix

Line 4760: p_flow_mode = hr_process_assignment_ss.g_new_hire_registration

4756: --start registration
4757: -- This is to rollback the dummy person created during the process request phase of the assignment page
4758: -- the new user registration.
4759: if p_flow_mode is not null and
4760: p_flow_mode = hr_process_assignment_ss.g_new_hire_registration
4761: then
4762: rollback;
4763: end if;
4764: --end registration

Line 8141: end hr_process_assignment_ss;

8137: return to_char(to_date(p_probation_end_date,'RRRR/MM/DD'), l_dateformat);
8138: END;
8139:
8140: --
8141: end hr_process_assignment_ss;