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: 

In Classical report table format and color formatting in output

Former Member
0 Kudos

Hi,

I need to display the output of classical report by making table formats and color formatting in output screen.

How do we do that? Please provide some sample programs.

thanks.

2 REPLIES 2

Former Member

HI,

Refer to the Demo program..

DEMO_LIST_FORMAT_COLOR_1

DEMO_LIST_FORMAT_COLOR_2

DD_STYLE_TABLE

former_member156446
Active Contributor
0 Kudos
DATA: var TYPE i,
chhar(10) TYPE c.

DO 3 TIMES.
  ADD 1 TO var.
  chhar+0(9) = 'CHARACTER'.
  chhar+9(1) = var.
  WRITE: / chhar COLOR 1,
  chhar COLOR 2,
  chhar COLOR 3,
  chhar COLOR 4,
  chhar COLOR 5,
  chhar COLOR 6,
  chhar COLOR 7.
ENDDO.