How to Refresh a Project Area
![]()
Hi,
I'm having some problem to refresh a project data. I modify an Editor presentation using plain api and then save it using an IProjectAreaWorkingCopy object. My modification appears on process configuration editor but if I try to create a new work-item I can't see modification in editor until I refresh the ProjectArea on client. How can I do it programmatically? Which class/method can I use? Thanks, Michele. |
2 answers
![]()
The changes are not visible to the process runtime (and thus to the work items creation user interface) until you save the project area. The configuration editor works off the working copy, but the runtime (and the creation ui) do not.
You must use the saveProcessItems method on IProcessItemService if you are running in the client. Martha Jazz Developer, Process component Hi, |
![]()
Thank you very much, I'm going to test it.
Best regards, Michele. The changes are not visible to the process runtime (and thus to the work items creation user interface) until you save the project area. The configuration editor works off the working copy, but the runtime (and the creation ui) do not. Hi, |