The PEL Utils is a powerful library of built-in utility methods which can be used inside a Pipeline Expression (PE) to simplify work. The libraries cover typical day-to-day flows and logics as simple helpers which are embedded into the PE.
Licenses | Status |
---|
colour | Yellow |
---|
title | COMMUNITY |
---|
| , Status |
---|
colour | Blue |
---|
title | ENTERPRISE |
---|
| , Status |
---|
colour | Purple |
---|
title | CORPORATE |
---|
|
|
Since | Status |
---|
colour | Green |
---|
title | VERSION 6.0 |
---|
|
|
Using a PEL Util
...
Introduction
The PEL Utils is a powerful library of built-in utility methods which can be used inside a Pipeline Expression (PE) to simplify work. The libraries cover typical day-to-day flows and logics as simple helpers which are embedded into the PE.
Info |
---|
Note: In order to understand PEL Utils you should have at least basic knowledge about the Pipeline Expression Language (PEL). |
Using a PEL Util
The structure of calling a PEL Util inside a pipeline looks like this:
Code Block |
---|
#{ @utilName.method(args) } |
Replace utilName
by the name of the utility and method
by the function/method you want to call. See the documentation of the utility which parameters/arguments are supported.
...
Auto-completion in the
...
Online Workbench
Only:
Status |
---|
colour | Blue |
---|
title | ENTERPRISE |
---|
|
, Status |
---|
colour | Purple |
---|
title | CORPORATE |
---|
|
When using the property low code editor of the online workbench in the web UI, you can get auto-completion support. Whenever you are inside a pipeline expression indicated by a starting #{
you can type @
+ Ctrl + Space and you will get a list of all available PEL utils. For example:
...