Application Development 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: 

format Colorposition

Former Member
0 Kudos

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

Former Member
0 Kudos

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

Former Member
0 Kudos

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

write : / '12345'.

FORMAT COLOR COL_HEADING ON INTENSIFIED ON.

write : 6 '6789'.