The Load Data Warehouse (DWH) job is failing on a custom lookup. How to find out which attribute an object it is on, in order to disable the lookup from the DWH?
Release: All Supported Releases
The lookup might not be having a proper query to work with DWH.
Few known issues where this can be the cause:
ERROR: THERE WERE ERRORS DURING LOOKUP JOB EXECUTION FOR THE TABLE - DWH_LKP_TEST_VAL_00
Lookup table is DWH_LKP_TEST_VAL_00
select object_name as Object_id, column_name as Attribute_code, lookup_type as Lookup_id
from (
select clt.id, clov.id, oca.id,
clt.lookup_type, clt.source,
clov.sql_text_id, clov.object_code,
oca.object_name, oca.internal_name, oca.column_name, oca.data_type,
oca.partition_code, oca.is_multivalued, oca.default_value, oca.derived_object_code,oca.internal_name
from cmn_lookup_types clt
join cmn_list_of_values clov
on clt.lookup_type = clov.lookup_type_code
and clov.is_system = 0
join odf_custom_attributes oca
on oca.lookup_type = clt.lookup_type
and clt.lookup_type like '%TEST_VAL%'
) sub
group by object_name, column_name, lookup_type
order by object_name, lookup_type
To discuss the issue on the Communities, please connect here: Tech Tip: Load Data Warehouse is failing on a custom lookup, how to find out which attribute to disable?