generate demo data for incidents table
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-04-2020 03:25 PM
Need help in generating test incident data in bulk.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-05-2020 11:38 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-15-2020 10:46 AM
Hello,
I just wanted to check-in on this. Did you solve this?
If I've helped guide you correctly, please mark that reply as Correct. This helps others in the community see the correct answer (at least for you) easily.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-05-2020 12:20 PM
Hi,
Run background script
var inc = new GlideRecord('incident');
inc.caller_id.setDisplayValue('your name');
inc.initialize();
inc.impact = '1';
inc.short_description = 'test';
inc.description = 'test';
inc.urgency = '1';
inc.insert();
Please mark it as helpful (or) correct if it helps.
Thanks,
Sumamth