How to get return value?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-29-2022 07:38 AM
Scenario 1: How can i get the return value in script include inside WF
scenario 2 : How can i send the sys_id of group create in WF to script include.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-29-2022 07:45 AM
Use return statement as in
return xyz// variable which you want to return
Send that in your functiona parameter
new ScriptIncldueName().functionName(your_paremeter);
Aman Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-29-2022 07:47 AM
Do you have an example?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-29-2022 08:07 AM
scenario 2 : How can i send the sys_id of group create in WF to script include
this?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-29-2022 08:10 AM
Send that in your functiona parameter
new ScriptIncldueName().functionName(your_paremeter);// this is syid of your group
Aman Kumar