How to call a flowdesigner in workflow

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2024 03:25 AM
Hi All,
Can anyone please help me how to call a flowdesigner in worklow
Thanks in Advance!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2024 03:32 AM
Hi @Community Alums ,
1. Add "Run Script" activity to your workflow.
2. Add below script in the run script :
var flowInputs = {};
flowInputs['target_obj'] = current;
flowInputs['table_name'] = current.getTableName();
var result = sn_fd.Flow.startAsync('flow_name', flowInputs);
If you find my response helpful, please consider marking it as the 'Accepted Solution' and giving it a 'Helpful' rating. Your feedback not only supports the community but also encourages me to continue providing valuable assistance.
Regards,
Amitoj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2024 03:33 AM
Hi @Community Alums
Click on Flow logic and you can find the “Call a Workflow” and select this activity. Finally, you can select any workflow through flow designer.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2024 03:56 AM
Hi @Harish Bainsla , Good Effort. But, I think @Community Alums is looking for the solution the other way around.
Calling flow from workflow.
Regards,
Karunakaran.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2024 03:35 AM
Hi @Community Alums ,
This you can achieve using the scripts. Please refer the FlowAPI documentation.
Please let me know, if you have any specific scenario which you want to acheive.
Thank you.
Regards,
Karunakaran.