Anyone experienced issues with generating queries on SAP BW based Universe? Greatly appreciate your thoughts and suggestions
I am able to generate IDT Universe (Data Foundation Layer, Business Layer) successfully using IDT and validate the queries locally on my desktop with Webi Rich Client on SAP BW. Queries are generated and KEY DATE is passed to the query properly.
SELECT
Table__1."0PROFIT_CTR"
FROM
"REL_CONN_MSU"."PUBLIC"."IZCOPA_M03" Table__1
WHERE
Table__1."REFERENCE_DATE" = @Prompt(Key Date)
Is generated as
SELECT
Table__1."0PROFIT_CTR"
FROM
"REL_CONN_MSU"."PUBLIC"."IZCOPA_M03" Table__1
WHERE
Table__1."REFERENCE_DATE" = {d ‘2013-09-18’}
Where as on the server platform, Windows 2008, IDT, Webi Rich Client and Bi LaunchPad is not able to replace the @prompt(Key Date) with valid current date. And generating the following SQL
SELECT
Table__1."0PROFIT_CTR"
FROM
"REL_CONN_MSU"."PUBLIC"."IZCOPA_M03" Table__1
WHERE
Table__1."REFERENCE_DATE" =
And resulting error message as
Encountered "<EOF>" at line 11, column 31.
Was expecting one of:
"native" ...
"left" ...
"right" ...
"case" ...
"coalesce" ...
"cast" ...
"convert" ...
"@atfunc" ...
"null" ...
<BOOL_LITERAL> ...
"any" ...
"some" ...
"all" ...
"+" ...
"-" ...
"?" ...
<INT_LITERAL> ...
<FLOAT_LITERAL> ...
<SCIENTIFIC_NOTATION_LITERAL> ...
<DATE_LITERAL> ...
<TIME_LITERAL> ...
<TIMESTAMP_LITERAL> ...
<DELIMITED_IDENTIFIER> ...
<QUOTED_STRING_LITERAL> ...
<IDENTIFIER> ...
"(" ...
"{" ...