Skip to content

Commit

Permalink
REFACTOR: added logic in case of different letter case
Browse files Browse the repository at this point in the history
  • Loading branch information
Frisle committed Apr 24, 2024
1 parent 7b5cfb8 commit a59b8b7
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion MDX2JSON/REST.cls
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,15 @@ ClassMethod KPIExecute() As %Status

if (Drillthrough = 1){
set SortOrder = $$$R("SortOrder")
set Filters = $$$R("FILTERS")

if %request.Content.FILTERS
{
set Filters = $$$R("FILTERS")

}else{
set Filters = $$$R("Filters")
}

set SortColumn = $$$R("SortColumn")
set pSelection = SortColumn _ "," _ SortOrder

Expand Down

0 comments on commit a59b8b7

Please sign in to comment.