Can we turn off the stage for Request Approved?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2016 10:56 AM
When you're looking at the Request Item table and seeing the Stage field for the RITM, the very first stage is 'Request Approved'.
Is it possible to not have this stage icon displayed on the Req Item table? All of the requests are approved, we don't have any approvals at the request level.
- 14,984 Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2018 04:26 AM
This would be great.
Thanks for posting.
Can you tell me what object or widget this references?
The sys_id doesn't render anything for me.
I'm on jakarta patch 8
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2018 05:37 AM
Hi,
You need to go to "ritm_stage_icons_bar" in the "sp_ng_template" table.
( i'm on Kingston release)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2018 09:25 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2018 03:03 AM
Hi,
Is there any update on this behaviour? I would like to start using workflows but with users seeing that there request is approved instantly - it's going to really confuse them when they are been told it is still waiting to be approved.
I can't seem to change the wording from approved to submitted either. Something like that would help.
Interestingly with execution plans the sc_request Approved stage does not show up - so would be good if Servicenow could do the same with workflow stages.
Thanks
Ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2018 06:39 AM
This is how I did it.
I went to Service Portal > Pages where ID = sc_request and Title = Request.
I updated the "Page Specific CSS" field to be this following text:
The actual lines that "hide" the erroneous stage are the ones with "stage in item.cl" where you can see the display is set to none for the "nth-child" of 1 that first stage.
Beaware that "item.cl" might be different for you but try this first. Good luck.
.sp-attachments-input {
visibility: hidden;
position: absolute;
left: 0px;
}
.file-selector {
float: right;
font-size: 24px;
margin-top: -5px;
}
div[ng-repeat="stage in item.cl"]:nth-child(1) {
display: none;
}
span[ng-repeat="stage in item.cl"]:nth-child(1) {
display: none;
}