Approver can't see attachment in service portal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2018 03:58 AM
We have a catalog item that requires the requestor to add an attachment, any itil user can see the attachment but approver_user users can't see them. I've had a look at ACLs etc but can't see where it would be. Where the record would show the message appears as below;
Can anyone help? Is it relating to the sc_request or the attachment?
- Labels:
-
Request Management
-
Service Catalog

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2018 08:27 AM
Can you provide their solution so someone else who has the same question can find the answer?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2018 08:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2021 05:38 AM
Hi
Can you please provide the name of the ACL? I have the same issue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2021 08:52 AM
Create Business Rule to copy the attachment for the sc_req_item table to the sysapproval_approver table. This will copy the attachment in the Active Stream. Also I added the Ticket Attachment widget from the RITM table into the Approval Table. (with the active stream will be fine, but just in case).
(function execueRule(current, previous
/*null when async*/ ) {
//Adds any attachment from the requested item to the sysapproval_approver associated with it.
var req = new GlideRecord('sc_req_item');
req.addQuery('sys_id', current.sysapproval);
req.query();
if(req.next()){
GlideSysAttachment.copy('sc_req_item', req.sys_id, 'sysapproval_approver', current.sys_id);
}
Then it will like this:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2022 04:56 AM