- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2024 03:20 AM
Can someone help with the script to call the script include from the Business rule with multiple parameters , I know we can call something like below but looking for detailed explanation
new().script include name().function name ()
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2024 03:25 AM
Hi,
It is like below
new ScriptIncludeName().FunctionName(parameter 1, parameter 2, parameter 3);
OR
var objName = new ScriptIncludeName();
objName.FunctionName(parameter 1, parameter 2, parameter 3);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2024 03:25 AM
Hi,
It is like below
new ScriptIncludeName().FunctionName(parameter 1, parameter 2, parameter 3);
OR
var objName = new ScriptIncludeName();
objName.FunctionName(parameter 1, parameter 2, parameter 3);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2024 03:30 AM
Hi,
Generally you pass parameters in function -
new ScriptIncludeName().FunctionName(parameter 1, parameter 2, parameter 3);And define the function in same way inside script include.
Link - Article
Please mark this helpful, if this is correct.
With Regards,
Uday Singh
