Flow designer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2024 11:28 PM
Hi All,
I am trying to call a flow designer by ui action . Please provide the code for this.
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2024 11:41 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2024 11:46 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2024 01:40 AM
Hi @Harish KM ,
Thanks for your response , i have some doubts in the flow designer i have put some trigger conditions if i call the flow designer using the ui action will it check the trigger conditions or directly exceute the flow. Please explain on the input mentioned in the doc , i am unable to understand that.
Thanks in advance

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2024 01:47 AM
Hi @kali
you can make flow trigger from that button
keep that UI action as server side and use this script
var flowInputs = {};
flowInputs['current'] = current;
flowInputs['table_name'] = current.getTableName();
var result = sn_fd.Flow.startAsync('flow name', flowInputs);
Please mark reply as Helpful/Correct, if applicable. Thanks!