How to customize the product name in IGA 24.3

I am trying to replace the "Identity Covernance CE 24.3" text on the main ui. According to the install guide in section 11.1: 

"You can also change the product name in the user interface. For more information about customizing the product name and header using the user interface, see Customizing and Configuring Identity Governance for Your Enterprise in the NetIQ Identity Governance Administration and User Guide.". 

Clicking on the above link takes you to a page that describes how to change a lot of settings, except how to change the product name.

Using configutil to change the name does absolutely nothing.

Does anyone know if it is possible in 24.3 to change the product name on the main page  and if it is possible, can you tell me how to do it.

 

Thanx

  • Suggested Answer

    0  

    Hello,

    1) The Production Name and the Cloud Edition are two (2) different properties

    2) To change the Product name in the Header (and in the About page), one utilizes the same approach as it has always been.  You will utilize String customization from the properties files, Section 11.3.2
    https://www.microfocus.com/documentation/identity-governance/4.3/install-guide/t4n332c2q6h7.html#t4n334rm9x6c

    then scroll down to "Customizing Strings for Identity Governance"

    For the IG Client UI you will follow the above steps, and the property will be:
    product_name=Identity Governance

    Here is an example of a change:
    product_name=Our Governance


    Similar if you want the CE
    cloud_edition=CE

    Here is an example of a change
    cloud_edition=Version

    You will then follow the steps to add the new file in the jar, add it to the tomcat/lib directory, restart tomcat, and you should see the change in the UI when you access:





    Sincerely,
    Steven Williams
    Principal Enterprise Architect
    OpenText Cybersecurity

  • 0 in reply to   

    Hi Steve

    Thanx for the comprehensive answer. I am now nearly there. I now have it showing our company logo and next to it "Access Reviews 24.3". Do you perhaps know how to get rid of the "24.3" ? I could not find it in any of the 2 property files.

    Thanx

  • Verified Answer

    +1   in reply to 

    Hello,

    1) The removal of the Cloud Edition from the Header (and About Page) should have been raised as different thread

    2) This can be accomplished using css.  I would strongly recommend that one utilize the Developer Tools -> Inspector.  One has the ability to make css changes live (until the browser is refreshed) and the copy those changes into your custom.css file.

    The following css will remove the Cloud Edition from being seen in the Header and About pages for Governance and Access Request:

    .cloudEdition {
      display: none;
    }





    Sincerely,
    Steven Williams
    Principal Enterprise Architect
    OpenText Cybersecurity

  • 0 in reply to   

    Hi Steve

    Thank you so much for this. Appreciate the time.