yes fairly standard
e.g.
01 MyArray
03 Array-Element occurs 10 times
05 array-item pic x(10)
01 myarray-quickfil redefines my array.
03 fill-element1 pic x(10)
03 fill-rest pic x(90)
move space to fill-element1
move myarray-qucikfil to fill-rest.
often used in pre INITIALISE code days.
Main Topics
Browse All Topics





by: KdoPosted on 2008-02-21 at 05:14:00ID: 20947335
Hi nav29,
Yes. An 01 can redefine another 01 just as an 05 can redefine another 05.
The only restriction is that you can not redefine a 77 level.
Good Luck,
Kent