Creating new task in a new project workspace - task is not saved
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2024 11:59 PM
Hello community, any advise how new task can be added to the project planning (gant), what needs to be pressed to have the task saved ?
When I click on 'Add task above' / 'Add task below'/ or via button 'Add Task' it imediatelly disapear.
It shows new row wit 'New task' but I am not able to get to edit it, it immeditally dissapear.
Thank you

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2024 02:54 AM
Hi, does this happen to any persona, incl. admin or just to project users?
We discovered a similar issue after upgrading to Xanadu and updating the sn_pw plugin, except the fact that admin persona would not see this particular behaviour. Also in our case we also noticed that existent project tasks if amended, their changes would not always save and refreshing the Planning page would reset to previous values.
After raising a case with SN Support they confirmed it's a bug and provided a work around by commenting out some code lines, see below:
They also raised PRB1819369 in case you might want to check to see if it's the same issue you're having
----------------------
We have a script include: "ProjectWorkspaceSaveApi" which is used to save any changes being done on Planning page of the Project workspace. The issue here is in the api we have method named "_saveTasksWithBatchApi" and the below logic in lines 302 to 310 is failing. Below is the logic for the same
if (!accessCheckedTables[table]) {
gr = new GlideRecord(table);
if (gr.canWrite())
accessCheckedTables[table] = true;
else{
gs.info("Vikhil canWrite and table" + table + " " + gr.canWrite());
return emptyObj;
}
}
I have added few logs which can be ignored. But this is the logic which is causing the issue and not allowing the users to save the changes being made by the user even after they are having write access to the projects. I have commented the above lines of code and it is working fine now. As a workaround you can comment that code and this is a defect from our end .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2024 01:10 PM
@PaulaaO Thank you very much, we will look into the provided workaround.
The issue is also for admin.
I am unable to access to PR record to see the details.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2024 08:07 AM
Hi @PaulaaO we tried the above but did not solve it. Upgrade to the new project workspace November release v6 has solved the issue.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2024 08:25 AM
That is good to know - appreciate the update 🙂