Clarity

 View Only
  • 1.  Clarity Home Page in CA PPM v15.6.1.1 (On Premise)

    Posted Mar 31, 2020 01:14 AM
    Hi,

    Currently whenever a user accesses the Clarity URL, by default he lands on Classic view home page.

    Our requirement is to modify the same so that whenever user accesses the F5 URL for Clarity he should land on Modern User Experience Timesheet page.

    Also, the Home Button in the left navigation pane in MUE redirects to Staffing page. Is it possible to make it redirect to MUE Timetsheet or Classic Timesheet page.

    Please let me know if anyone knows the approach to achieve this.

    Regards,
    Divyanshu Dhyani


  • 2.  RE: Clarity Home Page in CA PPM v15.6.1.1 (On Premise)

    Posted Mar 31, 2020 04:05 AM
    There are different URL for the Classic and the New UX.
    Classic https://<server>/niku/nu
    New UX https://<server>/niku/nu
    If you use the URL for the New UX that should take you directly to it. However, my understanding is that it does not work with SSO

    In the Classic there is the default user home page for each user. Try setting that to the page you want to land on. Unfortunately doing it that way it has to be set for each user and maybe even the user him or herself (do not have access to a system right now to  check if the admin can do it for the users)


  • 3.  RE: Clarity Home Page in CA PPM v15.6.1.1 (On Premise)

    Posted Apr 01, 2020 02:11 AM
    Hi Martti,​

    Thanks for responding.

    SSO is working for us for new UX. The only concern is that, our F5 url is ppmi.optum.com & whenever a user types the same in browser & proceeds, /niku/nu gets automatically associated with the URL and it becomes https://ppmi.optum.com/niku/nu and lands the user on Classic view.

    Whereas, now we need that instead of /niku/nu the URl should be https://ppmi.optum.com/pm so that user should land on Modern UX by default.

    That's why I asked is there any mapping there within the application or any code which associates /niku/nu to the URl automatically so we can change the same to /pm to redirect it to Modern UX.

    Regards,
    Divyanshu Dhyani


  • 4.  RE: Clarity Home Page in CA PPM v15.6.1.1 (On Premise)
    Best Answer

    Broadcom Employee
    Posted Apr 01, 2020 06:25 AM
    Hi Divyanshu

    Try the below steps 

    1. Stop all the services 
    2. Go to Clarity_home\setup\templates\docroot\index.html
    3. Backup the index.html 
    4. Stop and remove all the clarity services (service remove all)
    5. Edit the index.html and use the below code
     
    <html><head>
    <!-- Changes below commented to stop app going to classic ux -->
    <!-- <script>location.replace("@context@/nu#action:homeActionId");</script> -->
    <!-- Changes below to navigate to Modern UX-->
    <script>location.replace("/pm");</script>
    </head></html>
     
    6. Redeploy all the clarity services (service add deploy app bg beacon nsa) 
    7. Start all the clarity services (service start all)
    8. Login to clarity and it will take you to the modern ux 
     
    Note: By applying this change you will not be able to login to CSA and all the changes have to be done using properties.xml or you will have to revert back the index.html to login to CSA.
     


    ------------------------------
    Thanks & Regards
    Suman Pramanik
    Sr. Principal Support Engineer | Customer Success & Support, Enterprise Software Division
    Broadcom
    ------------------------------



  • 5.  RE: Clarity Home Page in CA PPM v15.6.1.1 (On Premise)

    Posted Apr 01, 2020 10:28 AM

    Thought you Suman were the person to answer this.

    Sounds almost like the cure almost kills the patient.




  • 6.  RE: Clarity Home Page in CA PPM v15.6.1.1 (On Premise)

    Broadcom Employee
    Posted Apr 01, 2020 12:25 PM
    Thanks Martti. 

    Hope all is well at your end. Stay safe.


    ------------------------------
    Thanks & Regards
    Suman Pramanik
    Sr. Principal Support Engineer | Customer Success & Support, Enterprise Software Division
    Broadcom
    ------------------------------



  • 7.  RE: Clarity Home Page in CA PPM v15.6.1.1 (On Premise)

    Posted Apr 02, 2020 09:40 PM
    Thanks Suman!! This solution worked as required.​