Question
Red Alpha, LLC
US
Last activity: 11 Nov 2024 10:00 EST
Rename Pulse label in Constellation
I've searched through prior questions and can't seem to find the specific answer, so figured I would ask here. In Pega Inifinity '24 with Constellation, how do we change the label of the Pulse widget? The name "Pulse" means something very specific to my customer and we cannot have it displayed anywhere in our Pega applications, so our team is looking to update any displays of this label. We've been able to update the tab name on case details, but the widget itself still says Pulse. Likewise, on the application home/landing pages any Pulse widgets still have the Pulse label.
In Cosmos UI for Pega Platform 8.* this was a very straightforward thing to update. But we're struggling to find where/how to do this with Constellation, so any suggestions are welcome. Thank you!
@VishalB8
Hi Vishal,
Yes in my previously accepted answer, we did as you described and simply created a React widget with props that allow a dev to replace occurrences of one string on the screen with another (as this is all front end display),
However, since then I have found a more reliable, scalable and Pega based solution. The instructions are below:
1) In Dev Studio, check out for Private Edit the When rule pxEnableC11nDev. Update the value to true and save. This will allow you to see the JSON that comprises the Constellation Views.
2) Then using App Explorer in Dev Studio, find the instances of your rules of type Rule-UI-View. Open you chosen View rule.
3) On the View rule (should be in JSON format), check out for edit and tick the checkbox near the top to enable "Mark as custom". This will enable editing on the JSON.
4) In the pxViewMetadata area, scroll down to find your Pulse tab/label. You should see a line that looks like -
"label": "@L Pulse",
You can edit the word Pulse to whatever term you would like to use instead of Pulse, like below -
"label": "@L Message Board",
5) Save your rule edits. I also then uncheck the "Mark as custom" checkbox and Save again. Check-in the rule if necessary, then examine the updates to your view in App Studio or User Portal