Finally managed with this solution,
1. To change the workflow administrator role, the System Administrator:Any security group responsibility must be assigned to yourself. Try to assign this responsibility to your user in order to change the workflow administrator.
OR
If you cannot assign it to you for some reason, you will need to update it from sqlplus.
update wf_resources
set text = 'SYSADMIN'
where name = 'WF_ADMIN_ROLE';
commit;
This action will assign your workflow administrator role to your SYSADMIN user. After updating it, if you want to change it, please do it via the workflow configuration page using the SYSADMIN user.
2. Retest the issue.
3. Migrate the solution as appropriate to other environments.
Cheers!!!
No comments:
Post a Comment