- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2023 07:00 PM
Hi Team,
I have requirement where i need to create the two VRA records and the vra record will be created when i clicked on the Create VRA UI Action . as of now when i am clicking on the UI Action Only one VRA record is creating and i need to create two VRA records at a time . How can i achieve this .
Solved! Go to Solution.
- Labels:
-
Vendor Risk Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2023 10:31 PM
Hi @sushma9 ,
If u want to create two records then u can apply for loop here n check. Something like this
for (var i=0;i<2;i++){
if(i=1){
gr.short_description = 'test2';
}else{
gr.short_description = 'test1';
}
}
Thanks,
Danish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2023 08:57 PM
Thanks for the response and i need to create the two records with different info. Can you please how can i do that
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2023 10:11 PM
I neee to update the two records with two different info like record 1 should be as it is and record 2 should be updated with descrtiption - test like that
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2023 10:31 PM
Hi @sushma9 ,
If u want to create two records then u can apply for loop here n check. Something like this
for (var i=0;i<2;i++){
if(i=1){
gr.short_description = 'test2';
}else{
gr.short_description = 'test1';
}
}
Thanks,
Danish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2023 12:59 AM
Thank you for the solution and here i am facing one issue and the issue is when two records are created then there is Message which will be trigger in the form and its coming twice . It should not be trigger the message Twice and only one Message has to come
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2023 01:27 AM