DBA Data[Home] [Help]

APPS.PAY_ETU_BUS dependencies on HR_STARTUP_DATA_API_SUPPORT

Line 377: IF hr_startup_data_api_support.g_startup_mode = 'GENERIC' THEN

373: -- Only need to open the cursor if run_type_id is not null
374: --
375: IF p_run_type_id is not null THEN
376: --
377: IF hr_startup_data_api_support.g_startup_mode = 'GENERIC' THEN
378: hr_utility.set_location(l_proc, 15);
379: --
380: OPEN csr_chk_generic_run_type;
381: FETCH csr_chk_generic_run_type INTO l_exists;

Line 391: ELSIF hr_startup_data_api_support.g_startup_mode = 'STARTUP' THEN

387: --
388: END IF;
389: CLOSE csr_chk_generic_run_type;
390: --
391: ELSIF hr_startup_data_api_support.g_startup_mode = 'STARTUP' THEN
392: hr_utility.set_location(l_proc, 20);
393: --
394: OPEN csr_chk_startup_run_type;
395: FETCH csr_chk_startup_run_type INTO l_exists;

Line 404: ELSIF hr_startup_data_api_support.g_startup_mode = 'USER' THEN

400: hr_utility.raise_error;
401: END IF;
402: CLOSE csr_chk_startup_run_type;
403: --
404: ELSIF hr_startup_data_api_support.g_startup_mode = 'USER' THEN
405: hr_utility.set_location(l_proc, 25);
406: --
407: IF p_element_type_usage_id is not null THEN
408: l_legislation_code := pay_etu_bus.return_legislation_code(p_element_type_usage_id);

Line 594: IF hr_startup_data_api_support.g_startup_mode = 'GENERIC' THEN

590: -- Only need to open the cursor if element_type_id is not null
591: --
592: IF p_element_type_id is not null THEN
593: --
594: IF hr_startup_data_api_support.g_startup_mode = 'GENERIC' THEN
595: hr_utility.set_location(l_proc, 15);
596: --
597: OPEN csr_chk_generic_element_type;
598: FETCH csr_chk_generic_element_type INTO l_exists;

Line 608: ELSIF hr_startup_data_api_support.g_startup_mode = 'STARTUP' THEN

604: --
605: END IF;
606: CLOSE csr_chk_generic_element_type;
607: --
608: ELSIF hr_startup_data_api_support.g_startup_mode = 'STARTUP' THEN
609: hr_utility.set_location(l_proc, 20);
610: --
611: OPEN csr_chk_startup_element_type;
612: FETCH csr_chk_startup_element_type INTO l_exists;

Line 621: ELSIF hr_startup_data_api_support.g_startup_mode = 'USER' THEN

617: hr_utility.raise_error;
618: END IF;
619: CLOSE csr_chk_startup_element_type;
620: --
621: ELSIF hr_startup_data_api_support.g_startup_mode = 'USER' THEN
622: hr_utility.set_location(l_proc, 25);
623: --
624: IF p_element_type_usage_id is not null THEN
625: l_legislation_code := pay_etu_bus.return_legislation_code(p_element_type_usage_id);

Line 762: IF hr_startup_data_api_support.g_startup_mode = 'GENERIC' THEN

758: BEGIN
759: --
760: hr_utility.set_location('Entering: '|| l_proc, 5);
761: --
762: IF hr_startup_data_api_support.g_startup_mode = 'GENERIC' THEN
763: --
764: hr_utility.set_location(l_proc, 15);
765: --
766: IF ((p_business_group_id is not null)

Line 774: ELSIF hr_startup_data_api_support.g_startup_mode = 'STARTUP' THEN

770: hr_utility.raise_error;
771: --
772: END IF;
773: --
774: ELSIF hr_startup_data_api_support.g_startup_mode = 'STARTUP' THEN
775: --
776: hr_utility.set_location(l_proc, 20);
777: --
778: IF ((p_business_group_id is not null)

Line 786: ELSIF hr_startup_data_api_support.g_startup_mode = 'USER' THEN

782: hr_utility.raise_error;
783: --
784: END IF;
785: --
786: ELSIF hr_startup_data_api_support.g_startup_mode = 'USER' THEN
787: --
788: hr_utility.set_location(l_proc, 25);
789: --
790: IF ((p_business_group_id is null)

Line 1043: hr_startup_data_api_support.chk_startup_action

1039: IF (p_insert) THEN
1040: --
1041: -- Call procedure to check startup_action for inserts.
1042: --
1043: hr_startup_data_api_support.chk_startup_action
1044: (p_generic_allowed => TRUE
1045: ,p_startup_allowed => TRUE
1046: ,p_user_allowed => TRUE
1047: ,p_business_group_id => p_business_group_id

Line 1055: hr_startup_data_api_support.chk_upd_del_startup_action

1051: ELSE
1052: --
1053: -- Call procedure to check startup_action for updates and deletes.
1054: --
1055: hr_startup_data_api_support.chk_upd_del_startup_action
1056: (p_generic_allowed => TRUE
1057: ,p_startup_allowed => TRUE
1058: ,p_user_allowed => TRUE
1059: ,p_business_group_id => p_business_group_id

Line 1088: IF hr_startup_data_api_support.g_startup_mode NOT IN ('GENERIC','STARTUP') THEN

1084: --
1085: chk_startup_action(True
1086: ,p_rec.business_group_id
1087: ,p_rec.legislation_code);
1088: IF hr_startup_data_api_support.g_startup_mode NOT IN ('GENERIC','STARTUP') THEN
1089: hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate bus_grp
1090: END IF;
1091: --
1092: hr_utility.set_location(l_proc, 10);

Line 1144: IF hr_startup_data_api_support.g_startup_mode NOT IN ('GENERIC','STARTUP') THEN

1140: --
1141: chk_startup_action(False
1142: ,p_rec.business_group_id
1143: ,p_rec.legislation_code);
1144: IF hr_startup_data_api_support.g_startup_mode NOT IN ('GENERIC','STARTUP') THEN
1145: hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate bus_grp
1146: END IF;
1147: --
1148: hr_utility.set_location(l_proc, 10);