Hi Brendan, I'm not certain I fully understand what you're trying to do, but could you do something like:
class-id Employee.
01 Number binary-long.
01 Selected condition-value.
...
end class.
You can then build an array or a List of instances of this class:
01 employees type Employee occuurs any.
...or:
01 employees list[type Employee].
...and the list or array can then be passed between methods as a parameter.
Robert.