Skip to content

Commit a59b8b7

Browse files
authored
REFACTOR: added logic in case of different letter case
1 parent 7b5cfb8 commit a59b8b7

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

MDX2JSON/REST.cls

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,15 @@ ClassMethod KPIExecute() As %Status
292292

293293
if (Drillthrough = 1){
294294
set SortOrder = $$$R("SortOrder")
295-
set Filters = $$$R("FILTERS")
295+
296+
if %request.Content.FILTERS
297+
{
298+
set Filters = $$$R("FILTERS")
299+
300+
}else{
301+
set Filters = $$$R("Filters")
302+
}
303+
296304
set SortColumn = $$$R("SortColumn")
297305
set pSelection = SortColumn _ "," _ SortOrder
298306

0 commit comments

Comments
 (0)