DBA Data[Home] [Help]

APPS.HR_PROCESS_PERSON_SS dependencies on HR_PROCESS_PERSON_SS

Line 1: PACKAGE body hr_process_person_ss AS

1: PACKAGE body hr_process_person_ss AS
2: /* $Header: hrperwrs.pkb 120.37.12020000.10 2013/01/07 13:07:18 narpalan ship $*/
3:
4: -- Global variables
5: g_package constant varchar2(75):='HR_PROCESS_PERSON_SS.';

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

1: PACKAGE body hr_process_person_ss AS
2: /* $Header: hrperwrs.pkb 120.37.12020000.10 2013/01/07 13:07:18 narpalan ship $*/
3:
4: -- Global variables
5: g_package constant varchar2(75):='HR_PROCESS_PERSON_SS.';
6: g_wf_review_regn_itm_attr_name constant varchar2(2000)
7: := 'HR_REVIEW_REGION_ITEM';
8:
9: g_data_error exception;

Line 474: IF(l_api_names(i) = 'HR_PROCESS_PERSON_SS.PROCESS_API') THEN

470: -- Need to loop through l_trans_rec_count -1 as the index starts from 0
471:
472: hr_utility.set_location('Entering 0..l_transaction_rec_count-1:'||l_proc,20);
473: FOR i in 0..l_transaction_rec_count-1 LOOP
474: IF(l_api_names(i) = 'HR_PROCESS_PERSON_SS.PROCESS_API') THEN
475: get_person_data_from_tt(
476: p_transaction_step_id => l_trans_step_ids(i)
477: ,p_effective_date => p_effective_date
478: ,p_attribute_update_mode => p_attribute_update_mode

Line 1828: AND api_name = 'HR_PROCESS_PERSON_SS.PROCESS_DUMMY_API';

1824: cursor get_transaction_step_id IS
1825: SELECT transaction_step_id FROM hr_api_transaction_steps
1826: WHERE item_type = p_item_type
1827: AND item_key = p_item_key
1828: AND api_name = 'HR_PROCESS_PERSON_SS.PROCESS_DUMMY_API';
1829:
1830: cursor get_job_and_asg is
1831: select pj.name, hou.name from
1832: per_all_assignments_f asf, per_jobs_tl pj, hr_all_organization_units_tl hou

Line 2159: l_basic_details_changed := hr_process_person_ss.is_rec_changed

2155: END IF;
2156:
2157:
2158: -- Check if the record has changed
2159: l_basic_details_changed := hr_process_person_ss.is_rec_changed
2160: (p_effective_date => p_effective_date
2161: ,p_person_id => p_person_id
2162: ,p_object_version_number => p_object_version_number
2163: ,p_person_type_id => p_person_type_id

Line 2517: raise hr_process_person_ss.g_validate_basic_details_error;

2513:
2514: --
2515: IF (l_error_message IS NOT NULL) THEN
2516: hr_utility.set_location('l_error_message IS NOT NULL:'||l_proc,80);
2517: raise hr_process_person_ss.g_validate_basic_details_error;
2518: END IF;
2519:
2520: --
2521: IF hr_errors_api.errorExists

Line 3457: ,p_api_name => 'HR_PROCESS_PERSON_SS.PROCESS_DUMMY_API'

3453: ,p_item_key => p_item_key
3454: ,p_actid => -1
3455: ,p_login_person_id => p_login_person_id
3456: ,p_transaction_step_id => ln_dummy_txn_step_id
3457: ,p_api_name => 'HR_PROCESS_PERSON_SS.PROCESS_DUMMY_API'
3458: ,p_transaction_data => l_dummy_txn_table);
3459: end if;
3460:
3461: IF g_debug THEN

Line 3522: WHEN hr_process_person_ss.g_validate_basic_details_error THEN

3518: rollback to applicant_hire;
3519: g_applicant_hire := false;
3520: end if;
3521: --
3522: WHEN hr_process_person_ss.g_validate_basic_details_error THEN
3523: hr_utility.set_location('Exception:g_validate_basic_details_error'||l_proc,565);
3524: -- No need to call formatted_error_message, as the messages is already
3525: -- formatted.
3526: p_error_message := l_error_message;

Line 3770: raise hr_process_person_ss.g_date_prior_to_cur_start_date;

3766: -- - enter an address after the hire date
3767: -- - contact your HR department for a correction of the person
3768: -- details change.
3769: hr_utility.set_location('p_effective_date < l_current_rec.effective_start_date:'||l_proc,15);
3770: raise hr_process_person_ss.g_date_prior_to_cur_start_date;
3771: END IF;
3772: --
3773: --
3774:

Line 3966: WHEN hr_process_person_ss.g_date_prior_to_cur_start_date THEN

3962:
3963: hr_utility.set_location('Exiting:'||l_proc, 30);
3964: EXCEPTION
3965:
3966: WHEN hr_process_person_ss.g_date_prior_to_cur_start_date THEN
3967: hr_utility.set_location('Exception:g_date_prior_to_cur_start_date'||l_proc,555);
3968: ROLLBACK TO process_basic_details;
3969: p_error_message := hr_java_conv_util_ss.get_formatted_error_message(
3970: p_error_message => p_error_message,

Line 8345: hr_utility.set_location('Leaving hr_process_person_ss.create_personnnnnnnnnn ' || l_person_id, 2006);

8341: );
8342: --
8343:
8344: IF g_debug THEN
8345: hr_utility.set_location('Leaving hr_process_person_ss.create_personnnnnnnnnn ' || l_person_id, 2006);
8346: END IF;
8347:
8348: /*prflvalue := fnd_profile.value('BEN_USER_TO_ORG_LINK');
8349: ben_assignment_api.create_ben_asg

Line 8463: IF(l_api_names(i) = 'HR_PROCESS_PERSON_SS.PROCESS_API') THEN

8459: --
8460:
8461: hr_utility.set_location('Entering For Loop 0..l_trans_step_rows-1:'||l_proc,110);
8462: FOR i in 0..l_trans_step_rows-1 LOOP
8463: IF(l_api_names(i) = 'HR_PROCESS_PERSON_SS.PROCESS_API') THEN
8464: l_transaction_step_id := l_trans_step_ids(i);
8465: END IF;
8466: END LOOP;
8467: hr_utility.set_location('Exiting For Loop 0..l_trans_step_rows-1:'||l_proc,115);

Line 9336: hr_utility.set_location('Leaving hr_process_person_ss.create_person ' || g_person_id, 200);

9332: p_employee_number := l_employee_number;
9333:
9334:
9335: IF g_debug THEN
9336: hr_utility.set_location('Leaving hr_process_person_ss.create_person ' || g_person_id, 200);
9337: END IF;
9338:
9339:
9340: EXCEPTION

Line 9434: END hr_process_person_ss;

9430: end if;
9431:
9432: end;
9433:
9434: END hr_process_person_ss;
9435: --
9436: --