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

format Colorposition

Former Member
0 Likes
343

Hi,

I want to use FORMAT COLOR COL_HEADING but starting from position (column) 5 and not from position (column) 0.

eg : FORMAT COLOR COL_HEADING ON INTENSIFIED ON.

write : sy-uline(183). --> will color till line position 183

Can some one help me with this?

Thanks

Dan

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
309

You'll have to break up your write statement into multiple statements.

write : / '12345'.

FORMAT COLOR COL_HEADING ON INTENSIFIED ON.

write : 6 '6789'.

1 REPLY 1
Read only

Former Member
0 Likes
310

You'll have to break up your write statement into multiple statements.

write : / '12345'.

FORMAT COLOR COL_HEADING ON INTENSIFIED ON.

write : 6 '6789'.