2006 Oct 11 1:48 PM
Hi,,
I am not looking for top up page logic. My requirement is
i want to show multiple header line text in the each ALV column.
Like if currently ALV Column header is showing
line 1 'Material Number'
I want to show it as
line 1 'Material'
line 2 'Number'
Thanks in Advance
Nandha
Hi,,
I am not looking for top up page logic. My requirement is
i want to show multiple header line text in the each ALV column.
Like if currently ALV Column header is showing
line 1 'Material Number'
I want to show it as
line 1 'Material'
line 2 'Number'
Thanks in Advance
Nandha
2006 Oct 11 3:21 PM
2006 Oct 11 3:27 PM
2006 Oct 11 3:32 PM
If you are using OO ALV
You need to define the document (see following code ) and using split container display it on the top of the grid
CALL METHOD o_html->add_text
EXPORTING
text = text-014
sap_emphasis = text-015
fix_lines = c_x.
CALL METHOD o_html->add_gap
EXPORTING
width = 16.
lws_text = cnt_failed.
CALL METHOD o_html->add_text
EXPORTING
text = lws_text
sap_emphasis = text-015
fix_lines = c_x.
CLEAR lws_text.
*-- Display Report Header
CALL METHOD o_html->display_document
EXPORTING
parent = o_container_top.
Please also check if the following helps you
2006 Oct 11 3:34 PM
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |