Answers for "Search for a value in ESQL Arrary"

0

Search for a value in ESQL Arrary

--https://www.ibm.com/docs/en/integration-bus/9.0.0?topic=performance-esql-code-tips
DECLARE myChar CHAR;
DECLARE inputRef REFERENCE TO InputRoot.MRM.myParent.myRepeatingRecord[1];
WHILE LASTMOVE(inputRef) DO
	SET myChar = inputRef;
	MOVE inputRef NEXTSIBLING NAME 'myRepeatingRecord';
END WHILE;
Posted by: Guest on July-22-2021

Code answers related to "Search for a value in ESQL Arrary"

Browse Popular Code Answers by Language