how to create a record in one table whenever an RITM is created
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā01-18-2022 05:09 AM
whenever an RITM is created i need to create a record in my custom table ("CASE FILING ");
how to achieve this using Business rule.
Here RITM is getting created with 4 variables , with the values of these variables i must able to create a record in case filing table . how to achieve this
how to automate this whenever an RITM is created it should automatticaly create a record in my case filing table?
Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā01-18-2022 05:22 AM
Write an async insert BR or flow designer also can be used, to initialize the record insertion
Async BR on sc_req_item table with exact condition for your catalog item wont affect the performance as it runs on background in system context
var gr = new GlideRecord('case_filing');
gr.initialize();
gr.approver = this.requested_for.manager;
gr.state = 'Requested';
gr.source_table_new = this.sys_id;
gr.source_table = reqtab.sys_id;
gr.insert();
Hit helpful or mark correct if it was š
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā01-18-2022 05:26 AM
how to achieve this via flow designer

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā01-18-2022 05:35 AM
can you see a create record action use that to create
it's a single step š

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā01-18-2022 05:37 AM
Hi,
Create a Flow with trigger Service Catalog.
Action1, get catalog variables
Action2, create case filing record
Action3..N Create additional actions as needed