In the usage_with_restrictions CTE, the code snippet is like the following:
IF(
:param_workspace = '<ALL WORKSPACES>',
true,
workspace_name = :param_workspace
)
But the default parameter against param_workspace field that is set in the parameters section below is <ALL_WORKSPACES>.
Because of this the Tag key visual in the Interactive Search tab renders with an error.
Either you need to add an underscore between <ALL and WORKSPACES> in the code snippet, or remove the underscore from the default parameters section.
In the
usage_with_restrictionsCTE, the code snippet is like the following:But the default parameter against
param_workspacefield that is set in the parameters section below is<ALL_WORKSPACES>.Because of this the
Tag keyvisual in theInteractive Searchtab renders with an error.Either you need to add an underscore between
<ALLandWORKSPACES>in the code snippet, or remove the underscore from the default parameters section.