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

Grid using - GL_GUI_ALV_GRID inserting blank line

Former Member
0 Likes
777

Hi experts ...

I am creating report using grid instance of class GL_GUI_ALV_GRID ...

its displaying results output table say itab[] ... I want to insert one blank line in display ...

if i append work area of type itab to itab ... in that case the column which showing amount displays 0.0

instead i want complete blank row ...

Thanks & Regards ...

Ashish

Hi experts ...

I am creating report using grid instance of class GL_GUI_ALV_GRID ...

its displaying results output table say itab[] ... I want to insert one blank line in display ...

if i append work area of type itab to itab ... in that case the column which showing amount displays 0.0

instead i want complete blank row ...

Thanks & Regards ...

Ashish

5 REPLIES 5
Read only

Former Member
0 Likes
748

Hi,

Change the field catalog with display no-zero....

Amitava

Read only

former_member212005
Active Contributor
0 Likes
748

Use the NO-ZERO addition for the fields in the field catalog...for this..

What you are doing is right!

Read only

Former Member
0 Likes
748

Dear Ashish,

Try this out.

Loop at itab into wa.

clear wa.

append wa to itab.

endloop.

Regards,

Vijay

Read only

Former Member
0 Likes
748

Hi,

check this link;[;

hope u'll get some idea.

Regards,

Sneha.

Read only

Former Member
0 Likes
748

Thanks