- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2025 03:27 AM
Hi Team,
I have created on catalog item, that item contains the MRVS, inside the MRVS we have the approver's values. i am sending the approvals by using the Flow designer, for MRVS to get one by one approval i used FOR EACH Logic ,the approval records created but I WANT TO CRATE THE ALL APPROVAL RECORDS AT A TIME.
Ex: MRVS contains the 5 records now we have 5 approvers i need to create 5 approvals records same time.
If any one knows could pls help on this
Advance thanks Team
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2025 03:12 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2025 04:03 AM
Thanks @Community Alums In scripted Custom action should I use the current.variables method.In flow i used, but scripted custom action we need inputs right.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2025 04:40 AM
Yupe, you try with following inputs:
- mrvs_field (List): A list of records from the MRVS.
- request_sys_id (String): The Sys ID of the catalog request (or record).
and in script use:
var mrvsField = inputs.mrvs_field;
var requestSysId = inputs.request_sys_id;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2025 08:31 AM
Thnaks @Community Alums I created scripted custom action but one by one approval record created
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2025 08:07 PM
Hi @Venky Kshatriy2 , please share the snap of your script.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2025 01:31 AM