Hi Amit,
Can you confirm where the filter would be (e.g. which layer). I can confirm there is no filter in the query layer of the universe created.
FYI - I picked up the following script by building a simple query in the universe. In HANA there are Input Parameters and Variables. The input parameters are seen as PLACEHOLDER in the script. I'm not sure if input parameters are causing the problem.
SELECT
Table__1."MaterialGroup",
SUM(Table__1."ServicePOItemCount"),
SUM(Table__1."PercentServiceLineCount")
FROM
"_SYS_BIC"."npm.rep.mm.pur/CLV_ECC_MM_PUR_Q001"
('PLACEHOLDER' = ('$$P_YearMonthFrom$$', @Prompt(Hana Variable npm.rep.mm.pur/CLV_ECC_MM_PUR_Q001/P_YearMonthFrom)),
'PLACEHOLDER' = ('$$P_YearMonthTo$$', @Prompt(Hana Variable npm.rep.mm.pur/CLV_ECC_MM_PUR_Q001/P_YearMonthTo)))
Table__1
WHERE
( Table__1."SAPClient" = @Prompt(Hana Variable npm.rep.mm.pur/CLV_ECC_MM_PUR_Q001/V_SAPClient) )
AND ( Table__1."Vendor" @Prompt(Hana Variable npm.rep.mm.pur/CLV_ECC_MM_PUR_Q001/V_Vendor) )
AND ( Table__1."Material" @Prompt(Hana Variable npm.rep.mm.pur/CLV_ECC_MM_PUR_Q001/V_Material) )
AND ( Table__1."MaterialGroup" @Prompt(Hana Variable npm.rep.mm.pur/CLV_ECC_MM_PUR_Q001/V_MaterialGroup) )
GROUP BY
Table__1."MaterialGroup"
Thanks,
Ken