Re: Reset data




"Mitch Steens" <M.Steens@xxxxxxx> wrote in message
news:45e2a4cb$0$6400$9b4e6d93@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Hello,

I have the following datatype:

03 tabelle.
05 occurs 9.
07 occurs 9.
10 elem.
12 elem-a pic 9.
12 elem-b pic 9.

How can I reset the datatype, so that no value is set?

It depends on what you mean by "no value".

If you want 'elem-a' and 'elem-b' to be reset to zero,
use: INITIALIZE tabelle.

If you want 'elem-a' and 'elem-b' to have invalid values,
use: MOVE SPACES TO tablelle.



.