简体   繁体   English

在 spotfire 的文本区域中显示的信息链接参数

[英]Information Link parameters to be displayed on Text area in spotfire

I have an IL with 2 parameter?Mindate &?Maxdate, those parameters i want to display on the header's text area.我有一个带有 2 个参数的 IL?Mindate 和?Maxdate,我想在标题的文本区域显示这些参数。 How to add them?如何添加它们? As they are not the part of any tables or IL's.因为它们不是任何表格或 IL 的一部分。 I am passing these parameters through webplayer's ConfigBlock.我通过 webplayer 的 ConfigBlock 传递这些参数。 My IL query is as below:我的 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 https://community.tibco.com/wiki/create-configuration-block-tibco-spotfire

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM