Hi,
In Project server 2013 PWA when you edit project custom fields and save the queue job execute the following jobs:
- "Project Update from PSI"
- "Project Publish Summary"
- "Reporting (Project Publish Summary)"
In my code (CSOM) i can only use : " QueueJob Job = projChechedOut.Publish(true);"
which is creating all these jobs:
Project Update from PSI
Project Publish Notifications
Project Publish
Project Checkin
Prepare Project Web App Permission Synchronization For Projects
Reporting (Project Publish)
Project Workflow Check-in
Synchronize Project Web App Permissions to Project Web App
Synchronize Project Web App Permissions to Project Site
Reporting (Project Sync)
Is there way to "simulate" the save from PWA instead of fully publishing the project using CSOM, because it is a lighter solution since my code is supposed to only set custom field value (if i only update, not publish it is written to the Draft) and secondly performance (less jobs) is better ?
Thx in advance !!