DBA Data[Home] [Help]

APPS.HR_EX_EMPLOYEE_INTERNAL dependencies on PER_SHARED_TYPES

Line 1051: per_shared_types

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

Line 1058: per_shared_types

1054:
1055: -- this cursor will be used to return the Status type code for the specific business group.
1056: cursor csr_shared_types_bg is
1057: select SHARED_TYPE_CODE from
1058: per_shared_types
1059: where system_type_cd = p_LEAVING_REASON
1060: and lookup_type='LEAV_REAS'
1061: and business_group_id=p_business_group_id;
1062: