How to add 'On Hold' Project state on Projects record and it should not impact the Project tasks

Jyo7
Tera Contributor

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 .

1 ACCEPTED SOLUTION

Martin Friedel
Mega Sage

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:

  1. Add choice on Project table and add an override on child table (use Configure Choices and remove On Hold)
  2. 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

View solution in original post

2 REPLIES 2

Martin Friedel
Mega Sage

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:

  1. Add choice on Project table and add an override on child table (use Configure Choices and remove On Hold)
  2. 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

Jyo7
Tera Contributor

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 .