Missing required fields under RITMS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2025 11:02 AM
Hi team,
Some ritms in a request are missing required fields. We found a KB article (Service Portal allows users to submit the order guide even if mandatory fields are not populated - K...) mentioning that using the pre-Kingston order guide might cause this issue. However when we checked, we are currently using the "SC Order Guide." Could there be any other reasons why ritms are being created without the required fields?
Thank you in advance!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2025 12:27 PM
Hi @SooraC ,
What's the latest version of your instance.?
Is it happening with all catalog item RITM or some specific one.
-Thanks,
AshishKM
Please mark this response as correct and helpful if it helps you can mark more that one reply as accepted solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2025 12:40 PM
Hi @SooraC
Could you please try to repair the plugin and see if new update is missing here? else log a Now support case.
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-02-2025 01:00 PM
Hey @SooraC
I’d agree with @Dr Atul G- LNG attempt to repair the plugin, if that doesn’t work can you provide a screenshot so I can see where the problem lies.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2025 02:33 PM
Hi ,
If custom validation logic is implemented, confirm it triggers on form submission and prevents submission when conditions are not met.
document.querySelector("form").addEventListener("submit", function(event) {
if (!document.querySelector("#mandatoryField").value) {
alert("This field is mandatory!");
event.preventDefault(); // Prevent form submission
}
});
JavaScript Conflicts: Conflicting scripts might bypass validation.
Hidden Fields: Validate hidden fields if they are conditionally mandatory.