- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2016 01:34 AM
When I try a create a new workflow I am now receiving the error Action not authorized
The table I am trying to create a workflow from is the ast_contract
I am an Admin and have never seen this before
Any ideas?
Thanks,
Riaz
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2016 06:54 AM
I have received the solution from Service Now and it is now working well.
I had a UI action which worked before but when the system upgraded from Geneva Patch 1 HF 5 to Geneva Patch 3 HF 2, on June 9th it broke.
The current release, it shows the UI Action, even if the condition is false. Then when trying to Submit the form, the issues occurs.
UI Action name is Submit
The last valid version, applied contained the following condition: current.canCreate() && !current.getTableName()=='change_request' The exclamation mark at this position is evaluated before the comparison (==) and therefore, it fails, returning false. The correct condition, which was applied in both instances, should be like this: current.canCreate() && current.getTableName() != 'change_request' Now the != is evaluated correctly comparing the return or getTableName method and comparing it with the string 'change_request'.
The issue is resolved.
Thanks,
Riaz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2016 07:12 AM
I'm glad you got your question answered. Thank you for participating in the community.
