CA Service Management

How can you customize the BSI interface? 

Oct 13, 2014 05:34 PM

Here some tips to customize the BSI interface.

 

Login page.png  

 

1/6) How can you change the page header/report footer?

The page header (browser title) and report footer are configured on "T_SYSTEM_CONFIGURATIONS" table, therefore, it's necessary to use SQL Plus, SQL Developer or any compatible tool to change this values.  You must run the following query:

 

Update

       T_SYSTEM_CONFIGURATIONS TSC1

Set

       TSC1.SYS_CONFIG_VALUE = '<new custom page header/report footer>'

Where

       TSC1.SYS_CONFIG_NAME = 'full_version'

       And

       TSC1.SYS_CONFIG_PARENT = (

             Select

                    TSC2.SYS_CONFIG_ID

             From

                    T_SYSTEM_CONFIGURATIONS TSC2

             Where

                    TSC2.SYS_CONFIG_NAME = 'system'

       );

Commit;

 

2) How can you change the login page logo?

The location of the login page logo is "\inetpub\wwwroot\Oblicore\App_Themes\CA_R7\Images\LoginPage\CAT_logo_53_drk.png", so you can change it.  It's important to keep the width and height picture (53x44).  If you want to use a image with a different size, you must modify the line 35 of "Login.aspx" file (located in the "\inetpub\wwwroot\Oblicore\" folder), according the following:

 

From:

<Oblicore:Image runat="server" border="0" Width="53px" Height="44px"

To:

<Oblicore:Image runat="server" border="0" Width="<new width>" Height="<new height>"

 

3) How can you set a new welcome text?

You can to set a new welcome text in order to enhance the login page presentation, by modifying the line 41 of the above file:

 

From:

CA Business Service Insight

To:

<new welcome text>

 

In addition, you can set a secondary text by adding the "<br>" label:

 

From:

CA Business Service Insight

To:

<new welcome text><br><new secondary text>

 

Last, you can use the "<div>" label to set a different text size

 

To:

<new welcome text><br><div style="font-size:20px"><new secondary text></div>

 

Application page.png 

 

4) How can you change the logo displayed in the application?

The location of application logo is "\inetpub\wwwroot\Oblicore\App_Themes\CA_R7\Images\Logo\Logo.gif", so you can change it, but you can't use a image with a different size (84x41).

 

Report.png 

 

5) How can you change the report logo?

The location of report logo is "\Program Files\CA\Cloud Insight\Reports\Images\reportlogo.jpg", so you can change it, but you can't use a image with a different size (39x32).

 

Some examples of modified pages

 

New login page.png 

 

New application page.png 

 

New report.png 

Statistics
0 Favorited
1 Views
0 Files
0 Shares
0 Downloads

Related Entries and Links

No Related Resource entered.