Create custom actions in flow designers

Rajkumar Bommal
Tera Contributor

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

 
2 ACCEPTED SOLUTIONS

@Rajkumar Bommal 

 

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.

 

--

Thanks & Regards ,
Supriya Waghmode |ServiceNow Consultant

 

View solution in original post

@Rajkumar Bommal 

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.

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

View solution in original post

7 REPLIES 7

OlaN
Giga Sage
Giga Sage

Hi,

Is there a question to this question? 😀

What do you need help with?

how to call a script include to custom action and create a problem record when incident is created

Ankur Bawiskar
Tera Patron
Tera Patron

@Rajkumar Bommal 

so what did you start with and where are you stuck?

If my response helped please mark it correct and close the thread so that it benefits future readers.

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

Rajkumar Bommal
Tera Contributor

@Ankur Bawiskar 
yes ,

i have created a custom action and added a script action step 
i want to call script include in it