- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2017 11:43 AM
Create a new button "Create Change Request" on the incident form, upon clicking on that a Yes / No popup should appear and upon clicking YES a change request will have to be created against the incident.(Depends on Ui Actions, Ui Page and Angular.js).
I'm new to Service Now , I need a answer for this question?. Please can anybody help me.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2017 01:24 PM
Hi Hareesh,
You can use something as below
Action Name: moveahead
onclick: valconfirm();
with below code
//for client end
function valconfirm()
{
var ans=confirm('Do you want to proceed');
if(ans==true)
{
gsftSubmit(gel('moveahead'));
}
else{
return false;
}
}
//for server side
createchange();
function createchange();
{
//code for insertion of change in change table
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2017 01:29 PM
Are you trying to have the change record submitted right there, or do you want people to interact with it before they submit it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-13-2017 04:35 AM
Hi Kevin Bellardine,
I have to change a record when i'm clicked a button only.
Thanks & Regards,
K.Hareesh Reddy.