- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2020 10:25 PM
I need to Create a form template that anyone can use to apply the necessary field values specific to non-disclosure agreement contracts. Name the form template 'Create NDA Contract' and have it set the following fields:
• | Contract model: NDA |
• | Contract administrator: Karla Ken |
• | Approver: Bud Richman |
• | Options: 1 Year |
Solved! Go to Solution.
- Labels:
-
Incident Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2020 05:22 AM
Hi Deepak ,
you can create a template for any table , cutome table on servicenow just follow these steps:
1) navigate to template in app navigator
2) create new template
3) select the table on which you want to create template
4) then choose the fields and fill the values in that
5)on your form got to more options on the right side in header , click on 'toggle template bar' , and you will see all the templates , select your template . it will get applied to the field values you have filled in template.
if my answer helped you in any way mark it as correct and helpful !
regards ,
Apeksha

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2020 05:22 AM
Hi Deepak ,
you can create a template for any table , cutome table on servicenow just follow these steps:
1) navigate to template in app navigator
2) create new template
3) select the table on which you want to create template
4) then choose the fields and fill the values in that
5)on your form got to more options on the right side in header , click on 'toggle template bar' , and you will see all the templates , select your template . it will get applied to the field values you have filled in template.
if my answer helped you in any way mark it as correct and helpful !
regards ,
Apeksha

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2020 07:08 PM
Hi deepak ,
if my answer helped you then please mark it as correct & helpful so that this thread will be closed and it will help other people who are looking for similar solution.
regards,
apeksha

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2020 08:56 PM
Hi,
I want to add one more point if you want apply template dynamically base on some condition.
var rec1 = new GlideRecord("incident");
rec1.initialize();
if(<your condition>)
{
rec1.applyTemplate("template_name");
}
Please Mark Correct/Helpful answer if it help you in any way.
Thanks and Regards,
Kunal.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2020 09:34 PM
Hi Deepak,
I have another simplest way to create a template. Just navigate to ast_contract table. create a new record and click on Toggle template bar icon.
Then need to click on create a new template at bottom. Fill the required fields and submit.
Regards,
Sagar Pagar