The IBM manuals say you should do the following to access the exception list. Do a search in the help for "ExceptionList" and its in the list of found topics:
Quote:
The following ESQL shows how you can access the ExceptionList and process each child that it contains:
-- Declare a reference for the ExceptionList
-- (in a Compute node use InputExceptionList)
DECLARE start REFERENCE TO ExceptionList.*[1];
-- Loop through the exception list children
WHILE start.Number IS NOT NULL DO
-- more ESQL
-- Move start to the last child of the field to which it currently points
MOVE start LASTCHILD;
END WHILE;
Creating a reference to the "current" exception and then referencing it should get rid of all your "EVAL" function calls. _________________ Regards
John
The pain of low quaility far outlasts the joy of low price.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum