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: 

Help on - > ALV Heading

Former Member
0 Kudos

Hi friends,

I want the heading of an ALV report in the format given as below ..... Is that possible ???

In the 1st line :-

123 ( Left corner ) ..... ABC (Center).... date (right corner)

In the second line also :- something like the first line .....

Is that possible ???

If yes ... How can i do this ???

Expecting your answers

thanks in advance

Cheers

R.Kripa

2 REPLIES 2

former_member181962
Active Contributor
0 Kudos

refer the links:

http://www.sap-img.com/abap/test-alv-display-with-header-footer.htm

or

http://www.sap-img.com/abap/sample-alv-heading-in-alv.htm

or

The last two would address your question more precisely.

Regards,

Ravi

Former Member
0 Kudos

Hi,

You have to make some calculations.

WRITE ' '.
DATA center TYPE i.
DATA right TYPE i.
center = sy-linsz / 2.
right = sy-linsz - 30.
WRITE AT 3 'Left'.
WRITE AT center 'Center'.
WRITE AT right 'Right'.