User can not approve any of the other approvals even if from the same user groupIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internalTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:0; } .sp td{ border-bottom: 1px solid; border-right: 1px solid; border-color:#E0E0E0; background-color: #ffffff; height: 20px; padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; } .sphr td{ border-right: 1px solid; border-bottom: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; height: 20px; } .title { color: #D1232B; font-weight:; font-size:25px; } .hd1{ color: #D1232B; font-weight:; font-size:18px; } .hd2{ color: #646464; font-weight:bold; font-size:16px; } .hd3{ color: #7a7a7a; font-weight:; font-size:16 px; text-decoration:; } .hd4{ color: #000000; font-weight:bold; font-size:14 px; text-decoration:; } --> Users can not approve any of the other approvals even if they are belong to the same user group. CauseThis is expected behavior with the approval records when users attempt to approve any other user approvals. The constraints are set on the OOB ACL (sys_ID=476967a60a0a0b0c0019e98fbc0a83d8) on the [sysapproval_approver] table, and on the 'Approve' UI Action (sys_ID=846762e1c611227d00d8f3173b5d29db) conditions. ResolutionThe 'Approve' UI Action (sys_ID=846762e1c611227d00d8f3173b5d29db) which you see when you select all the approval records has the condition: current.state == 'requested' && isApprovalMine(current) This means the UI Action is available only on the user's own approvals. The ACL (sys_ID=476967a60a0a0b0c0019e98fbc0a83d8) on the other hand will only allow users with 'admin' role to approve, or if the approval is their own. In order to modify the behavior, remove the second condition from the UI Action 'isApprovalMine(current)', and add 'catalog' and 'itil' roles to the above ACL. This will allow any user from the group to go ahead and Approve all the records in one go.