Repeat workflow component

Repeat workflow component

The advanced, utilities workflow component, Repeat creates a loop in which the components following it are executed a number of times. At the start of each repetition, the workflow payload and variables are reset to the state they have at the point where the repeat component is placed, so you cannot keep track of the current number of repetitions with a variable.

 

The maximum number of allowed repetitions is 1000.

 

The repeat workflow component has these parameters:

NG2WorkflowRepeat01

 

Number of repetitions

This is the number of repetitions, that will be executed. The number can be not only fixed, but can also be set via an XPath expression, where e.g. contents of an input file is used. You can also consider to count the number of nodes in the input XML file and use that with this XPath expression: count(/Root/Document).

 

Keep variable values and payload between repeats

If this option is disabled, then the initial set of variables and payload is reset to the initial values for all repeat iterations, but if you enable this option, then the workflow variables and the payload is kept for each iteration.

 

So if you want e.g. to do a repeat loop and keep track of the current number of repeats, then you will need to enable this option. If you want to keep the initial payload for each iteration, then you can consider first to save the initial payload before the repeat e.g. with the component, Payload to named property and then start each iteration in the repeat loop with the component, Named property to payload to reload the original payload.

 

 

Important: Please note, that a workflow variable is always defined as a string, so if you use such a variable as index in XPath, then you need to cast this as a number e.g. like so:

/Root/Document[number($Index)]/@Company.

 

Also if you want to create a counter to keep track of the current number of repeats, then you need also to use the number function, when you increment the value e.g. like so:

NG2WorkflowVariableUpdateNumeric0001

 

 

 

Example

This will create 3 identical print outs:

 

NG2WorkflowRepeat02

    • Related Articles

    • Retry-repeat workflow component

      The advanced utilities workflow component, Retry-repeat can help you, if you have a workflow component, that sometimes fail. You can use this to retry a subtree of workflow components until no error occurred, but it will fail when it has tried a ...
    • Choice and join workflow component

      The basic, special Choice and join workflow component is very similar to the Choice component. For the majority of the documentation of the Choice and join you should refer to the choice component as choice and join does the same as the choice ...
    • Multicast and merge workflow component

      Multicast and merge workflow component The multicast and merge workflow component is placed in the basic section, but it is not a basic function. With this component you can create multiple outputs and then merge them together as a single output. ...
    • Error workflow component

      The workflows, that you can setup in InterFormNG2 can be very long and complex and in some cases e.g. for debugging you might want to force an error in the workflow. Another reason why you might want to force an error, could e.g. be that an input XML ...
    • Swagger HTTP workflow component

      The advanced, utilities workflow component, Swagger HTTP can load a Swagger JSON definition can be loaded and a request from the API can be selected. An HTTP component is then generated with URL, output type, parameter names and header names ...