1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Cognos BI レポート表示を自動リフレッシュする

Last updated at Posted at 2016-12-08

Cognos BIで、刻一刻と更新されるデータをリアルタイムにレポートに表示できないか、というご相談を良く受けます。

基本的にHTML Itemに定期的にレポートを再実行するJavaScriptを仕込むしかないのですが、実装をご紹介します。

自動反映イメージ

レポート実行初期イメージ
001.PNG

裏のデータベースのデータ更新
004.PNG

5秒に一回、レポートが再実行される
002.PNG

レポートに反映された結果
003.PNG

という動作で、リアルタイムではないのですが、5秒に一回リフレッシュは可能です。

実装方法
レポート中にHTML Itemを置いて、以下のコードを記載下さい。

<script type="text/javascript">
var intval;
var fW = (typeof getFormWarpRequest == "function" ? getFormWarpRequest() : document.forms["formWarpRequest"]);
if ( !fW || fW == undefined)
{
fW = ( formWarpRequest_THIS_ ? formWarpRequest_THIS_ : formWarpRequest_NS_ );
}
var preFix = "";
if (fW.elements["cv.id"])
{
preFix = fW.elements["cv.id"].value;
}
var nameSpace = "oCV" + preFix;
if(intval!="")
{
self.clearInterval(intval);
intval="";
}
self["RunReportInterval"] = self.setInterval( nameSpace + ".getRV().RunReport()",'5000' );
intval = self["RunReportInterval"];
</script>

参考文書
こちらを参考にしています。IE11やCognos Analytics、Cognos BI 10.2.2でも動作確認済みです。
JavaScript: Setting reports to auto refresh in Cognos Viewer with IE 6 or 7
http://www-01.ibm.com/support/docview.wss?uid=swg21342426

こちらのTechnoteもあるのですが、動作がイマイチ安定しませんでした。ご参考まで。
Prompt API - Auto refresh a report in the Browser / Web with a timed interval
http://www-01.ibm.com/support/docview.wss?uid=swg21646893

1
1
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?