For Example my code should contain the variables as follows:
10 Actual-Values Pic X(7)
88 Valid-Values ABCDEFG, ABCDEFH,... BCDFGHE,... ZZZZZ9
My Query: how many values can I give under a single 88 variable?
Another example:
10 Actual-Values Pic X(7)
88 Valid-Value1 ABCDEFG
88 Valid-Value2 ABCDEFH
:
:
88 Valid-Value100 BCDFGHE
88 Valid-ValueXXXX ZZZZZ9
My Query: how many 88 level variable can I give under a single group variable? What can be the maximum value of 'XXXX'?