DBA Data[Home] [Help]

APPS.PAY_RTU_BUS dependencies on HR_STARTUP_DATA_API_SUPPORT

Line 354: if hr_startup_data_api_support.g_startup_mode = 'GENERIC' THEN

350: --
351: -- If business_group and legislation code are not null then must
352: -- be in GENERIC mode, check by calling:
353: --
354: if hr_startup_data_api_support.g_startup_mode = 'GENERIC' THEN
355: hr_utility.set_location(l_proc, 15);
356: --
357: OPEN csr_chk_valid_parent;
358: FETCH csr_chk_valid_parent INTO l_exists;

Line 376: if hr_startup_data_api_support.g_startup_mode = 'STARTUP' THEN

372: --
373: -- If business_group_id is null, and legislation code is not null,
374: -- then must be in STRATUP mode, check by calling:
375: --
376: if hr_startup_data_api_support.g_startup_mode = 'STARTUP' THEN
377: hr_utility.set_location(l_proc, 25);
378: --
379: OPEN csr_chk_valid_parent;
380: FETCH csr_chk_valid_parent INTO l_exists;

Line 399: if hr_startup_data_api_support.g_startup_mode = 'USER' then

395: --
396: -- If business_group is not null, and legislation code is null then
397: -- must be in USER mode, check by calling:
398: --
399: if hr_startup_data_api_support.g_startup_mode = 'USER' then
400: hr_utility.set_location(l_proc, 30);
401: --
402: OPEN csr_chk_valid_parent;
403: FETCH csr_chk_valid_parent INTO l_exists;

Line 544: if hr_startup_data_api_support.g_startup_mode = 'GENERIC' then

540: --
541: -- If business group id and leg code are null, then we must be in
542: -- GENERIC mode, check this by calling:
543: --
544: if hr_startup_data_api_support.g_startup_mode = 'GENERIC' then
545: hr_utility.set_location(l_proc, 25);
546: --
547: OPEN csr_chk_valid_child;
548: FETCH csr_chk_valid_child INTO l_bg_id, l_leg_code, l_rt_id;

Line 590: if hr_startup_data_api_support.g_startup_mode = 'STARTUP' then

586: --
587: -- If business_group_id is null, and legislation_code is not null,
588: -- we must be in STARTUP mode, check this by calling:
589: --
590: if hr_startup_data_api_support.g_startup_mode = 'STARTUP' then
591: hr_utility.set_location(l_proc, 35);
592: --
593: OPEN csr_chk_valid_child;
594: FETCH csr_chk_valid_child INTO l_bg_id, l_leg_code, l_rt_id;

Line 650: if hr_startup_data_api_support.g_startup_mode = 'USER' then

646: --
647: -- If business_group_id is NOT NULL and legislation code is null then
648: -- we must be in USER mode, check this by calling:
649: --
650: if hr_startup_data_api_support.g_startup_mode = 'USER' then
651: hr_utility.set_location(l_proc, 45);
652: --
653: OPEN csr_chk_valid_child;
654: FETCH csr_chk_valid_child INTO l_bg_id, l_leg_code, l_rt_id;

Line 1060: hr_startup_data_api_support.chk_startup_action

1056: IF (p_insert) THEN
1057: --
1058: -- Call procedure to check startup_action for inserts
1059: --
1060: hr_startup_data_api_support.chk_startup_action
1061: (p_generic_allowed => TRUE
1062: ,p_startup_allowed => TRUE
1063: ,p_user_allowed => TRUE
1064: ,p_business_group_id => p_business_group_id

Line 1072: hr_startup_data_api_support.chk_upd_del_startup_action

1068: ELSE
1069: --
1070: -- Call procedure to check startup action for upd and del
1071: --
1072: hr_startup_data_api_support.chk_upd_del_startup_action
1073: (p_generic_allowed => TRUE
1074: ,p_startup_allowed => TRUE
1075: ,p_user_allowed => TRUE
1076: ,p_business_group_id => p_business_group_id

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

1108: chk_startup_action(true
1109: ,p_rec.business_group_id
1110: ,p_rec.legislation_code
1111: );
1112: IF hr_startup_data_api_support.g_startup_mode NOT IN ('GENERIC','STARTUP')
1113: THEN
1114: hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate bus_grp
1115: END IF;
1116: --

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

1171: chk_startup_action(false
1172: ,p_rec.business_group_id
1173: ,p_rec.legislation_code
1174: );
1175: IF hr_startup_data_api_support.g_startup_mode NOT IN ('GENERIC','STARTUP')
1176: THEN
1177: hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate bus_grp
1178: END IF;
1179: --