Need to create a task indicate a creation of a record
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2024 09:20 AM
Hi there,
I am creating a workflow where I need to automate creating a record in a table. The clients wants to add a task which should indicates that whether the record craeted successfully or not.
How can I do that? Can anyone guide me?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2024 09:36 AM
Run script:
var gr=new GlideRecord('incident');
gr.initilaize();
gr.short_description="from workflow";
gr.insert();
You can try in this way.
Thanks and Regards
Sai Venkatesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2024 12:16 AM
Do we need to create two catalog task?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2024 05:27 AM
We can do by using one task or two task it is purely based upon the requirement
thanks and regards
Sai venkatesh