cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Getting error while passing multiple entries input parameter to calculation view in HANA Cloud.

0 Likes
713

Hi All,

I'm trying to pass multiple entries for input parameter IP_FIN_REG with multiple entries enabled and I'm filtering parameter using this expression.

"FinRegionKey"=$$IP_FIN_REG$$

While I'm trying to pass the multiple entries getting this error

Whereas it works while passing single entry, throws error when passing multiple entries. Anyone please let me know how to fix this.

Kind regards,

Chethan

View Entire Topic
0 Likes

Can you try the below

in("FinRegionKey",$$IP_FIN_REG$$)

0 Likes

Hi Vinoth,

Thanks for the quick response. I tried that, getting invalid expression error. Also, FYI, I'm developing calculation views in Business Application Studio.

Hello Chethan,

There is a small change in BAS. This works

"FinRegionKey" in ($$IP_FIN_REG$$)

You can refer the syntax here

https://help.sap.com/docs/hana-cloud-database/sap-hana-cloud-sap-hana-database-modeling-guide-for-sa...

Thank you so much Vinoth, It worked!