Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

Sych between project tasks in SPM and order tasks in SOMT

snehapatel
Tera Contributor

Hi,

 

I am creating project oversight in SPM from the order in OMT.  I understand that whenever the order tasks gets updated, the respective project tasks also gets updated. My requirement is to update the order tasks whenever there is an update to project task like notes, status etc. gets updated. How can this be achieved?

 

Thanks,

Sneha

1 ACCEPTED SOLUTION

Community Alums
Not applicable

Hi @snehapatel ,

To update Order Tasks when Project Tasks change (e.g., notes, status):

  • Business Rule on pm_project_task: Trigger on update of key fields, locate the related Order Task, and update the necessary fields.

  • Flow Designer: Use a Record Updated trigger to look up the linked Order Task and map the updates.

  • Important: Be careful to prevent infinite loops by controlling when the sync logic runs (e.g., add conditions or flags).

Since there’s no native bi-directional sync, this approach is generally the way to go. requirement.

Useful References:

Thanks & Regards,
Muhammad Iftikhar
If my response helped, please mark it as the accepted solution so others can benefit as well.

View solution in original post

1 REPLY 1

Community Alums
Not applicable

Hi @snehapatel ,

To update Order Tasks when Project Tasks change (e.g., notes, status):

  • Business Rule on pm_project_task: Trigger on update of key fields, locate the related Order Task, and update the necessary fields.

  • Flow Designer: Use a Record Updated trigger to look up the linked Order Task and map the updates.

  • Important: Be careful to prevent infinite loops by controlling when the sync logic runs (e.g., add conditions or flags).

Since there’s no native bi-directional sync, this approach is generally the way to go. requirement.

Useful References:

Thanks & Regards,
Muhammad Iftikhar
If my response helped, please mark it as the accepted solution so others can benefit as well.