I have a scenario to call ION API for list of items.
Input XML/BOD contains list of items, based on the number of item on that list I have to call the API.
(Refer sample XML below, LstItems could be n times)
As I found from this community there are no aggregate functions in ION to loop with in workflow.
Is there any alternative way to do this?
Appreciate your thoughts on this.
<SyncWS releaseID="9.2">
<ApplicationArea>
<Sender>
<LogicalID>infor</LogicalID>
<ComponentID>External</ComponentID>
<ConfirmationCode>OnError</ConfirmationCode>
</Sender>
<CreationDateTime>2019-05-23T10:53:00.123Z</CreationDateTime>
<BODID>infor</BODID>
</ApplicationArea>
<DataArea>
<Sync>
<TenantID>INFOR</TenantID>
<AccountingEntityID/>
<LocationID/>
<ActionCriteria>
<ActionExpression actionCode="Add"/>
</ActionCriteria>
</Sync>
<WS>
<Type>01 </Type>
<Code>29809</Code>
<Prefix>AAA</Prefix>
<Number>3</Number>
<LstItems>
<Item>11111</Item>
</LstItems>
<LstItems>
<Item>2222</Item>
</LstItems>
<LstItems>
<Item>3333</Item>
</LstItems>
<LstItems>
<Item>4444</Item>
</LstItems>
</WS>
</DataArea>
</Sync>