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_00select object_name as Object_id, column_name as Attribute_code, lookup_type as Lookup_idfrom (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_namefrom cmn_lookup_types cltjoin cmn_list_of_values clovon clt.lookup_type = clov.lookup_type_codeand clov.is_system = 0join odf_custom_attributes ocaon oca.lookup_type = clt.lookup_typeand clt.lookup_type like '%TEST_VAL%') subgroup by object_name, column_name, lookup_typeorder by object_name, lookup_typeTo 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?