Information Link 参数显示在 spotfire 的文本区域
Information Link parameters to be displayed on Text area in spotfire
我有一个带有 2 个参数的 IL ?Mindate 和 ?Maxdate,我想在页眉的文本区域显示这些参数。如何添加它们?因为它们不是任何表或 IL 的一部分。
我通过网络播放器的 ConfigBlock 传递这些参数。
我的 IL 查询如下:
SELECT F1."PROTOCOL_ID" ,
F1."PROTOCOL_TYPE" ,
F1."PROJECT_CODE" ,
F1."PROTOCOL_STATUS"
count(distinct case when not M2."ECG_REJECTED_PROTOCOL" is null
and M2."ECG_REJECTED_PROTOCOL_DT"<=?Maxdate
and M2."ECG_REJECTED_PROTOCOL_DT" <=?Mindate
and (M2."ECG_REJECTED_PROTOCOL_DT">=M2."ECG_DISPATCH_PROTOCOL_DT" or M2."ECG_REJECTED_PROTOCOL_DT">=M2."ECG_STORED_PROTOCOL_DT") then M2."ES_ECG_ID" end) AS "D30C6"
FROM
"BIECGRPT"."FINANCE_REPORT_STUDIES" F1,
"BIECGRPT"."MV_FINANCE_RPT_MAIN" M2
WHERE
(M2."ECG_REJECTED_PROTOCOL" = F1."PROTOCOL_ID")
AND F1."PROTOCOL_ID" <> '223HV102_RV'
A configuration block parameter is automatically assigned to a
document property, if a document property with the same name and data
type is defined in the analysis.
https://community.tibco.com/wiki/create-configuration-block-tibco-spotfire
我有一个带有 2 个参数的 IL ?Mindate 和 ?Maxdate,我想在页眉的文本区域显示这些参数。如何添加它们?因为它们不是任何表或 IL 的一部分。 我通过网络播放器的 ConfigBlock 传递这些参数。 我的 IL 查询如下:
SELECT F1."PROTOCOL_ID" ,
F1."PROTOCOL_TYPE" ,
F1."PROJECT_CODE" ,
F1."PROTOCOL_STATUS"
count(distinct case when not M2."ECG_REJECTED_PROTOCOL" is null
and M2."ECG_REJECTED_PROTOCOL_DT"<=?Maxdate
and M2."ECG_REJECTED_PROTOCOL_DT" <=?Mindate
and (M2."ECG_REJECTED_PROTOCOL_DT">=M2."ECG_DISPATCH_PROTOCOL_DT" or M2."ECG_REJECTED_PROTOCOL_DT">=M2."ECG_STORED_PROTOCOL_DT") then M2."ES_ECG_ID" end) AS "D30C6"
FROM
"BIECGRPT"."FINANCE_REPORT_STUDIES" F1,
"BIECGRPT"."MV_FINANCE_RPT_MAIN" M2
WHERE
(M2."ECG_REJECTED_PROTOCOL" = F1."PROTOCOL_ID")
AND F1."PROTOCOL_ID" <> '223HV102_RV'
A configuration block parameter is automatically assigned to a document property, if a document property with the same name and data type is defined in the analysis.
https://community.tibco.com/wiki/create-configuration-block-tibco-spotfire