0
0

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 1 year has passed since last update.

Oracle Analytics Cloud:カスタムメニューを追加する

Posted at

はじめに

Oracle Analytics Cloud(OAC)には、セルフサービスBI機能の他に、多くのユーザによる情報共有に適したダッシュボード機能があります。
この大量アクセスにも耐えられるダッシュボードと、それを構築するための様々な機能をまとめてエンタープライズBIと呼ぶこともあります。
それぞれに独自のポータルが設けられており、セルフサービスBIのポータルからはエンタープライズBIポータルへのリンクがあります。
ところが、エンタープライズBIポータルからセルフサービスBIポータルへのリンクは用意されていません。

やりたいこと

  • カスタムリンクの機能を使用して、エンタープライズBIのメニューをカスタマイズします。
  • カスタマイズしたメニューをクリックすると、セルフサービスBIのポータルに遷移するようにします。

カスタムリンクを作る

image.png
OACにログインし、左上のナビゲータアイコンをクリックします。
コンソールを開き、「システム設定」をクリックします。
image.png
Custom Links XMLに次のコードを入力し、「Restart」ボタンをクリックします。

<?xml version="1.0" encoding="utf-8"?>
<customLinks xmlns="com.siebel.analytics.web/customlinks/v1">
   <link id="11" name="セルフサービスBI" description="セルフサービスBI" src="https://<OAC Hostname>/ui/" target="_self">
      <locations>
         <location name="header" insertBefore="catalog"/>
      </locations>
   </link>
</customLinks>

OBI Presentation Serverのリスタートを実行し、しばらく待ちます。
image.png
image.png

動作確認

https://<OAC Hostname>/ui/にアクセスして、OACにログインします。
ページメニューから「クラシックホームを開く」をクリックします。
image.png
カスタマイズしたメニューが表示されていることを確認します。
image.png
実際にクリックしてみると、セルフサービスBIのポータルに移動できました。

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?