- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2024 04:10 AM
We have 30 service catalogs in PROD. In that, all submit button shows as submit requests in the snow portal for service catalogs except 3 service catalogs. The 3 service catalogs show as "submit". Can someone help me how to rename "submit" to "submit request" in the snow portal for service catalogs?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2024 04:52 AM
You can rename to
as per OOTB. Also its NO SNOW, its SN or ServiceNow.
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2024 04:52 AM
You can rename to
as per OOTB. Also its NO SNOW, its SN or ServiceNow.
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2024 05:15 AM
Thank you. Its works.Thanks for guiding me. I will use SN or ServiceNow going forward.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2024 05:15 AM
Sure, I can guide you through the process of renaming the "Submit" button to "Submit Request" in the ServiceNow Portal for Service Catalogs. Please note that this will require administrative access in ServiceNow.
Log in to ServiceNow with an account that has administrative privileges.
Navigate to the Service Catalog module.
Open the Catalog item for which you want to rename the button.
In the Catalog Item form, locate the "Variables" section.
Create a new UI Policy. Here's a step-by-step guide:
- Go to 'Service Catalog' > 'Catalog Policies' > 'UI Policies'.
- Click 'New' to create a new UI policy.
- Fill in the fields, such as Name, Catalog item (select the item you want to apply the policy to), and Conditions (if any).
- Save the UI Policy.
In the UI Policy that you just created, you need to add a UI Policy Action.
- Click on 'UI Policy Actions' related list.
- Click 'New' to create a new UI policy action.
- In the 'Type' field, select 'Script'.
- In the 'Script' field, input the following JavaScript code:
var button = document.getElementById('submit_button_id'); // replace 'submit_button_id' with the actual ID of your submit button
if (button) {
button.value = 'Submit Request';
}
}
Save the UI Policy Action.
Now, whenever the conditions of the UI Policy are met, this script will change the text of the submit button to "Submit Request".