Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

getting a warning message in the write statement

Former Member
0 Likes
646

Hi to all experts.

You cannot use the syntax "WRITE/ULINE /001(REPLEN)". The correct

syntax is "WRITE/ULINE AT /001(REPLEN)".

How to avoid this warning message.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
461

Use write & ULINE seperately.

Eg,

ULINE AT 10(10).

WRITE: /10 '|', 11(8) 'Text' CENTERED, 19 '|'.

ULINE AT /10(10).

Syntax for ULINE:

ULINE {[AT] [/][pos][(len)]} [NO-GAP].

Hi to all experts.

You cannot use the syntax "WRITE/ULINE /001(REPLEN)". The correct

syntax is "WRITE/ULINE AT /001(REPLEN)".

How to avoid this warning message.

1 REPLY 1
Read only

Former Member
0 Likes
462

Use write & ULINE seperately.

Eg,

ULINE AT 10(10).

WRITE: /10 '|', 11(8) 'Text' CENTERED, 19 '|'.

ULINE AT /10(10).

Syntax for ULINE:

ULINE {[AT] [/][pos][(len)]} [NO-GAP].