hi krimhild,
First declare a working-storage entry
eg,
01 w-dotted-line pic x(70).
then code a move statement in the procedure division to fill it up with dots:
MOVE ALL "." TO W-DOTTED-LINE
The field W-DOTTED-LINE should now contain all dots, this MOVE ALL can be used to fill a field up with anything
eg
MOVE ALL "ASDF" TO W-DOTTED-LINE would fill it up thus:
"asdfasdfasdfasdfasdfasdfasdf.....etc"
hope this helps B-) jimlee