The requested article is not available. Either it doesn't apply to this version of the product or the relevant information is organized differently in this version of the docs. You can search, browse, or go back to the other version.
Guidelines for WFA functions
Contributors
-
PDF of this doc site
-
Installation and setup for Linux
-
Installation and setup for Windows
-

Collection of separate PDF docs
Creating your file...
This may take a few minutes. Thanks for your patience.
Your file is ready
You can create functions to encapsulate commonly used and more complex logic in a named function, and then reuse the function as command parameter values or filter parameters values in OnCommand Workflow Automation (WFA).
Guidelines | Example |
---|---|
Use Camel case for a function name. |
calculateVolumeSize |
Variable names should be in plain English and related to the functionality of the function. |
splitByDelimiter |
Do not use abbreviations. |
calculateVolumeSize, not calcVolSize |
Functions are defined using MVFLEX Expression Language (MVEL). |
None |
The function definition should be specified according to the official Java Programming Language guidelines. |
None |