DBA Data[Home] [Help]

APPS.PAY_BAD_BUS dependencies on HR_STARTUP_DATA_API_SUPPORT

Line 243: l_mode := hr_startup_data_api_support.return_startup_mode;

239: -- Only need to open the cursor if attribute_name is not null
240: --
241: if p_attribute_name is not null then
242: --
243: l_mode := hr_startup_data_api_support.return_startup_mode;
244: --
245: OPEN csr_attribute_name;
246: FETCH csr_attribute_name INTO l_attribute_name
247: ,l_leg_code

Line 413: l_mode := hr_startup_data_api_support.return_startup_mode;

409: -- Only need to open the cursor if user_attribute_name is not null
410: --
411: if p_user_attribute_name is not null then
412: --
413: l_mode := hr_startup_data_api_support.return_startup_mode;
414: --
415: OPEN csr_user_attribute_name;
416: FETCH csr_user_attribute_name INTO l_user_attribute_name
417: ,l_leg_code

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

535: -- would expect to need to validate against hr_lookups.
536: --
537: -- if user mode then alterable must be 'Y'.
538: --
539: if hr_startup_data_api_support.g_startup_mode = 'USER' then
540: --
541: if p_alterable <> 'Y' then
542: hr_utility.set_location(l_proc, 10);
543: hr_utility.set_message(801, 'PAY_34238_U_ALT_FLAG_MUSTB_Y');

Line 825: hr_startup_data_api_support.chk_startup_action

821: -- Call the supporting procedure to check startup mode
822: -- EDIT_HERE: The following call should be edited if certain types of rows
823: -- are not permitted.
824: IF (p_insert) THEN
825: hr_startup_data_api_support.chk_startup_action
826: (p_generic_allowed => TRUE
827: ,p_startup_allowed => TRUE
828: ,p_user_allowed => TRUE
829: ,p_business_group_id => p_business_group_id

Line 834: hr_startup_data_api_support.chk_upd_del_startup_action

830: ,p_legislation_code => p_legislation_code
831: ,p_legislation_subgroup => p_legislation_subgroup
832: );
833: ELSE
834: hr_startup_data_api_support.chk_upd_del_startup_action
835: (p_generic_allowed => TRUE
836: ,p_startup_allowed => TRUE
837: ,p_user_allowed => TRUE
838: ,p_business_group_id => p_business_group_id

Line 866: IF hr_startup_data_api_support.g_startup_mode

862: chk_startup_action(true
863: ,p_rec.business_group_id
864: ,p_rec.legislation_code
865: );
866: IF hr_startup_data_api_support.g_startup_mode
867: NOT IN ('GENERIC','STARTUP') THEN
868: --
869: -- Validate Important Attributes
870: --

Line 934: IF hr_startup_data_api_support.g_startup_mode

930: --
931: -- NB. need to use g_old_rec, as p_rec is not pupulated with all the columns
932: -- for delete mode.
933: --
934: IF hr_startup_data_api_support.g_startup_mode
935: NOT IN ('GENERIC','STARTUP') THEN
936: hr_utility.set_location(l_proc, 15);
937: --
938: -- Validate Important Attributes