DBA Data[Home] [Help]

APPS.HR_EX_EMPLOYEE_INTERNAL dependencies on PER_SHARED_TYPES

Line 1043: per_shared_types

1039:
1040: -- this cursor will be used to return the Status type code available globally
1041: cursor csr_shared_types is
1042: select SHARED_TYPE_CODE from
1043: per_shared_types
1044: where system_type_cd = p_LEAVING_REASON
1045: and lookup_type='LEAV_REAS';
1046:
1047: -- this cursor will be used to return the Status type code for the specific business group.

Line 1050: per_shared_types

1046:
1047: -- this cursor will be used to return the Status type code for the specific business group.
1048: cursor csr_shared_types_bg is
1049: select SHARED_TYPE_CODE from
1050: per_shared_types
1051: where system_type_cd = p_LEAVING_REASON
1052: and lookup_type='LEAV_REAS'
1053: and business_group_id=p_business_group_id;
1054: