Changing character format from a ABAP report
You can change the font, size or color of the output characters from a normal ABAP report program.
You can change the font, size or color of the output characters from a normal ABAP report program.
data f type i value 1. new-page print on. while f < 6. print-control font f color red. write:/ 'print-control font', f. f = f + 1. endwhile. new-page print off. *note: with output to the screen or *when printing screen output, the *statement has no effect.