Ability to paste screen shots into the Service Request / Incident form
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2014 12:19 PM
Hi, is there any way to paste screen shots into the incident / service request form while creating ticket ? Lot of cutomers are asking about this feature on our side. How have you handled this apart from attaching the document?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2016 07:21 AM
I share your frustration but, sadly, have no answer to your question.
Blog: https://sys.properties | Telegram: https://t.me/sys_properties | LinkedIn: https://www.linkedin.com/in/slava-savitsky/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2016 07:23 AM
It's not your fault. It's just aggravating.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2016 10:04 AM
Hi Justin,
Are you not seeing the ability to paste in screenshots using the tinyMCE editor? My apologies if I'm misunderstanding, but I've noticed for around 6 months now I actually have had the ability with it to just paste screenshots directly in to ServiceNow HTML fields.
Best regards,
Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2016 06:24 AM
I do not want to derail the topic of conversation, but I'm potentially misunderstanding something.
I am expecting to be able to paste my clipboard image into "Work notes" or "Additional comments". How does one make them HTML fields within Incident (Default View)?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2016 09:25 AM
I'm not sure if there is a more official way to do this, but what I did was just add an html field to the incident table and made that be the input for comments/work notes on the form. Then, I run a business rule "before" insert or update to embed it into the journaled comments / work notes with a [code] tag around it:
if(current.u_support_comment.changes() && current.u_support_comment != '' && !current.comments.changes()){
current.comments = ("[code]" + current.u_support_comment + "[/code]" );
current.u_support_comment = "";
}
if(current.u_support_work_notes.changes() && current.u_support_work_notes != '' && !current.work_notes.changes()){
current.work_notes = ("[code]" + current.u_support_work_notes + "[/code]" );
current.u_support_work_notes = "";
}
Those u_support fields are the new html fields I created that appear as input on the form.