Starting with the release of Strategy ONE (March 2024), dossiers are also known as dashboards.
Prior to Strategy 2020, metric qualification filters defined on an attribute in another dataset cannot be successfully applied when the following conditions are met:
The following example uses Strategy Tutorial attributes and metrics:


Step 1 (SQL QUERY)
SQL Statements: Pass0 - Query Pass Start Time: 3/3/2020 4:30:34 PM Query Pass End Time: 3/3/2020 4:30:34 PM Query Execution: 0:00:00.00 Data Fetching and Processing: 0:00:00.00 Data Transfer from Datasource(s): 0:00:00.00 Other Processing: 0:00:00.04 Rows selected: 15 select distinct a11.CALL_CTR_ID CALL_CTR_ID from dbo.CITY_CTR_SLS a11 Pass1 - Query Pass Start Time: 3/3/2020 4:30:34 PM Query Pass End Time: 3/3/2020 4:30:34 PM Query Execution: 0:00:00.00 Data Fetching and Processing: 0:00:00.00 Data Transfer from Datasource(s): 0:00:00.00 Other Processing: 0:00:00.00 [Populate Report Data] [Analytical engine calculation steps: 1. Perform cross-tabbing ] to CITY_CTR_SLS_2
select ([Call Ctr Id]@[CALL_CTR_ID]) as ([Call Ctr Id]@[CALL_CTR_ID]) from CITY_CTR_SLS_2 where [M01] < 400000 to Ex7_tempcube0
This is known issue before Strategy 2020. The existing engine logic evaluates the metric filter in CSI, but the derived metric cannot be calculated in the dataset because its level is in another dataset.
To resolve this defect, please upgrade to Strategy 2020 or above and set Data Engine Version setting to 2020 or above.
The project level setting, Data Engine Version, can only be enabled through Workstation. For more details on enabling the setting, see Change Data Engine Version. In the new fix, the derived metric’s output level is replaced with attributes in the same dataset, so the filter can be evaluated in the SQL query.

SQL Statements
Pass0 - Query Pass Start Time: 3/3/2020 4:21:02 PM Query Pass End Time: 3/3/2020 4:21:04 PM Query Execution: 0:00:00.01 Data Fetching and Processing: 0:00:00.00 Data Transfer from Datasource(s): 0:00:00.00 Other Processing: 0:00:01.68 Rows selected: 4 select a11.CALL_CTR_ID CALL_CTR_ID, sum(a11.TOT_COST) WJXBFS1 from dbo.CITY_CTR_SLS a11 join (select a11.CALL_CTR_ID CALL_CTR_ID from dbo.CITY_CTR_SLS a11 group by a11.CALL_CTR_ID having sum(a11.TOT_COST) < 400000 ) pa12 on (a11.CALL_CTR_ID = pa12.CALL_CTR_ID) group by a11.CALL_CTR_ID Pass1 - Query Pass Start Time: 3/3/2020 4:21:04 PM Query Pass End Time: 3/3/2020 4:21:04 PM Query Execution: 0:00:00.00 Data Fetching and Processing: 0:00:00.00 Data Transfer from Datasource(s): 0:00:00.00 Other Processing: 0:00:00.00 [Populate Report Data] [Analytical engine calculation steps: 1. Perform cross-tabbing ] to CITY_CTR_SLS_1 Strategy Internal Reference number for this technical note is KB483573, KB484110, DE140604 and DE160497.