I am in the process of Creating your own metadata dictionary in FDI using this blog.
As part of this I need create two data sets and able to create 1 data set w.r.t ADW Model details successfully,
While creating the 2nd Dataset for pillar-wise subject area using Manual Query option is failing with below error message —
"Failed with Invalid Logical Statement."
Can you guide me what went wrong with below query?
Query is as below:
SELECT
"Content Explorer - Subject Areas"."Application"."Application Name" ,
"Content Explorer - Subject Areas"."Module"."Active Flag" ,
"Content Explorer - Subject Areas"."Module"."Module Name",
"Content Explorer - Subject Areas"."Subject Area"."Subject Area Description" ,
"Content Explorer - Subject Areas"."Subject Area"."Subject Area Name" ,
DESCRIPTOR_IDOF("Content Explorer - Subject Areas"."Application"."Application Name") Pillar ,
DESCRIPTOR_IDOF("Content Explorer - Subject Areas"."Module"."Module Name") Module_code,
DESCRIPTOR_IDOF("Content Explorer - Subject Areas"."Subject Area"."Subject Area Description") SubjectArea,
"Content Explorer - Subject Areas"."Release"."Release Code"
FROM "Content Explorer - Subject Areas"
ORDER BY 9 DESC NULLS LAST
FETCH FIRST 500001 ROWS ONLY