2007 Jan 19 11:44 AM
Hi all,
How to create empty lines in ALV Grid like Table Control.
Regards,
Vijayakumar V
1. add 1 more column to internal table for serial numbers.
2. after u populate the data
3. Describe table itab lines v_lines.
4. v_lines = v_lines + 1.
5.
do 5 times.
itab-serial = v_lines.
append itab.
v_lines = v_lines + 1.
enddo.
6. this will append 5 empty lines
2007 Jan 19 11:49 AM
Hi Vijay,
Can you please explain with example?
If iam not wrong i think you want to add blank lines to ALV after a row.
Append your internal table with blank line and you can get view that in the ALV.
reward Points if it is helpful
Regards,
Kiran I
2007 Jan 19 11:50 AM
1. add 1 more column to internal table for serial numbers.
2. after u populate the data
3. Describe table itab lines v_lines.
4. v_lines = v_lines + 1.
5.
do 5 times.
itab-serial = v_lines.
append itab.
v_lines = v_lines + 1.
enddo.
6. this will append 5 empty lines
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |