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

ALV listheader parameters

Former Member
0 Likes
598

Hi,

data: t_heading type slis_t_listheader

is_line type slis_listheader.

creating a TOP OF PAGE Header for ALV DISPLAY.

form build_header using p_t_heading.

refresh t_heading.

clear is_line.

is_line-typ = 'H /S /A'.

is_line-key = ' '.

is_line-info = ' .

append is_line to t_heading.

endform.

What is the meaning for <b>H, S, A .</b>

where we'll those three.

wat are the diference between those three, can u explain the purpose of the three pareameters individually.

Hi,

data: t_heading type slis_t_listheader

is_line type slis_listheader.

creating a TOP OF PAGE Header for ALV DISPLAY.

form build_header using p_t_heading.

refresh t_heading.

clear is_line.

is_line-typ = 'H /S /A'.

is_line-key = ' '.

is_line-info = ' .

append is_line to t_heading.

endform.

What is the meaning for <b>H, S, A .</b>

where we'll those three.

wat are the diference between those three, can u explain the purpose of the three pareameters individually.

2 REPLIES 2
Read only

Former Member
0 Likes
458

Hi..,

H is for Headings ... Big Font...

A is for Action .... Medium Font

S --- Text appears as running font ( normal font ) Small font

<b>Suppose we are going to print the Company's Name in the Top .. then we will go For 'H'..

For printing User name , Time of billing, etc.. we use 'S'.. ( running font )... </b>

Generally we use the above two !!!

reward if it helps u,

sai ramesh

Read only

Former Member
0 Likes
458

Hi

Apart from the information u have seen above, there are a few points regarding ur question:

1. The info u write on the list using above method is avaliable only in GRID display of ALV and not with LIST display.

2. The parameters u have mentioned are avaliable only with the REUSE_ALV_COMMENTRY_WRITE function module....

3. The type 'S' will give u an option to write the content in bold letters, and seperate the other part from this bold display.

ex: <b>Company name:</b> SAP AG etc....

Hope this helps u

Reward points if helpful

Regards