CA Service Management

 View Only
Expand all | Collapse all

We need to add a button to the login screen of CA Service Catalog that would launch an email with pre-populated To, Subject, and Message. Any information that could help with this please let me know

  • 1.  We need to add a button to the login screen of CA Service Catalog that would launch an email with pre-populated To, Subject, and Message. Any information that could help with this please let me know

    Broadcom Employee
    Posted Nov 08, 2014 10:55 AM

    As the subject line indicates, any information on the right files that need editing to make this happen please reply.



  • 2.  Re: We need to add a button to the login screen of CA Service Catalog that would launch an email with pre-populated To, Subject, and Message. Any information that could help with this please let me know
    Best Answer

    Broadcom Employee
    Posted Nov 10, 2014 12:14 PM

    Thanks to olipe03 for finding a resolution to this. Here are the changes that we had to make:

     

      -- CHANGES APPLIED ---

     

    D:\Program Files (x86)\CA\Service Catalog\filestore\themes\common\css\logon.css

     

    Added

     

    .partners {

       background-color: #0c6ac8;

       border: medium none;

       color: #ffffff;

       font-family: verdana,arial,sans-serif;

       font-weight: 700;

       margin-left: 1px;

       padding: 2px 7px;

       text-decoration: none;

       -moz-border-radius:5px;

       -webkit-border-radius:5px;

       border-radius:5px;

       border:1px solid #18ab29;

    }

     

    D:\Program Files (x86)\CA\Service Catalog\filestore\custom\explorer\logon.xsl

     

    Added

                                   <td>

                                     <table border="0" cellpadding="0" cellspacing="0">

                                       <tr>

                                         <td>

                                           <xsl:template match="/">

                                           <xsl:element name="button">

                                           <xsl:attribute name="class">partners</xsl:attribute>

                                           <xsl:attribute name="onclick">window.location.href='mailto:team@ca.com?subject=test</xsl:attribute>

                                              Partners

                                            </xsl:element>

                                             </xsl:template>

                                           </td>

                                         </tr>

                                       </table>

                                     </td>

     

     

    To apply the changes made to the xsl file

     

    Clear the contents of the following directory

     

    %USM_HOME%\view\translets

     

    Restart CA Service View service

     



  • 3.  Re: We need to add a button to the login screen of CA Service Catalog that would launch an email with pre-populated To, Subject, and Message. Any information that could help with this please let me know

    Posted Nov 10, 2014 08:06 PM

    Thanks for letting us know Ryan!