I'm using OBIEE 12.2.1.4.0. In my master report, I've setup an action link for one of the columns. When a user clicks on a value in this column, it brings him to the detail report.
The master report has some presentation variables. I expect these variables to be passed to the destination report. This works fine in IE11, but not in Chrome 77.
Here's what is happening. In the master report, I define pv_category variable. In a detail report, I'm trying to use this variable in a filter condition, like this:
Category is equal to / is in @{pv_category}
In IE, the filter view in the destination report shows this, which is correct:
...and Category is equal to CLOTHING_CATEGORY
In Chrome, however, the filter view show this:
...and Category is equal to pv_category
So it seems that Chrome is treating this as a literal, not as a variable. Any ideas on how to solve this?