DBA Data[Home] [Help]

APPS.XLA_EXTRACT_INTEGRITY_PKG dependencies on XLA_ACCT_ATTRIBUTES_B

Line 3024: FROM xla_acct_attributes_b a

3020: -- Get all required accounting sources which are not mapped for the event class
3021: CURSOR c_reqd_sources
3022: IS
3023: SELECT accounting_attribute_code
3024: FROM xla_acct_attributes_b a
3025: WHERE a.assignment_required_code = 'Y'
3026: AND NOT EXISTS (SELECT 'x'
3027: FROM xla_evt_class_acct_attrs e
3028: WHERE e.application_id = p_application_id

Line 3040: FROM xla_acct_attributes_b a

3036: -- group mapped to the event class
3037: CURSOR c_mapping_groups
3038: IS
3039: SELECT distinct assignment_group_code
3040: FROM xla_acct_attributes_b a
3041: WHERE assignment_group_code IS NOT NULL
3042: AND EXISTS (SELECT 'x'
3043: FROM xla_evt_class_acct_attrs e
3044: WHERE e.application_id = p_application_id

Line 3056: FROM xla_acct_attributes_b a

3052: -- mapped to the event class
3053: CURSOR c_group_sources
3054: IS
3055: SELECT accounting_attribute_code
3056: FROM xla_acct_attributes_b a
3057: WHERE a.assignment_required_code = 'G'
3058: AND a.assignment_group_code = l_mapping_groups.assignment_group_code
3059: AND NOT EXISTS (SELECT 'x'
3060: FROM xla_evt_class_acct_attrs e