- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2025 09:38 AM
How to add 'On Hold' Project state on Projects record and it should not impact the Project tasks Please guide as its showing impact on Project tasks when added through Dictionary override .
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2025 01:42 PM
Hello, if I understood correctly that you want to add a field choice only to one table and don't include it also child table, you can try one of these steps:
- Add choice on Project table and add an override on child table (use Configure Choices and remove On Hold)
- Add a choice on Project table by an onload client script with g_form.addOption()
Documentation: GlideForm addOption()
If my answer helped you, please mark it as correct and helpful, thank you 👍
Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2025 01:42 PM
Hello, if I understood correctly that you want to add a field choice only to one table and don't include it also child table, you can try one of these steps:
- Add choice on Project table and add an override on child table (use Configure Choices and remove On Hold)
- Add a choice on Project table by an onload client script with g_form.addOption()
Documentation: GlideForm addOption()
If my answer helped you, please mark it as correct and helpful, thank you 👍
Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2025 12:16 AM
Hello Martin , I added the project states and exempted On Hold from the Business rule ProcessStateChange and also made few changes for Project Tasks by making changes on Sys_list_actions .Thanks for the comments .