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

Creating Empty rows in ALV Grid

Former Member
0 Likes
1,484

Hi all,

How to create empty lines in ALV Grid like Table Control.

Regards,

Vijayakumar V

Hi all,

How to create empty lines in ALV Grid like Table Control.

Regards,

Vijayakumar V

2 REPLIES 2
Read only

Former Member
0 Likes
704

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

Read only

Former Member
0 Likes
704
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