- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2025 12:22 AM
I want to Create a custom action in flow designer
In that custom action add a script action and call script include in it
using this custom action in flow designer i want to create a problem record when incident record is created
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2025 01:07 AM
var scriptName = new <Script Include name>();
var storeValue = scriptName.<method name to execute>(<arguments>);
Please check above syntax to call script include in custom actions.
--
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2025 01:36 AM
simply call it like this in normal way how you call from any server side
var value = new ScriptInclude().functionName();
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2025 12:57 AM
@Rajkumar Bommal do you want to share what you have tried till now.
Johnny
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2025 01:07 AM
var scriptName = new <Script Include name>();
var storeValue = scriptName.<method name to execute>(<arguments>);
Please check above syntax to call script include in custom actions.
--
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2025 01:36 AM
simply call it like this in normal way how you call from any server side
var value = new ScriptInclude().functionName();
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader