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

remove the Zero's values data in REPORT output

Former Member
0 Likes
710

Hi Friends,

i have a requirement....

my report output contains the some value data and some are NUll DATA............BUT I WANTS.. HWNE I AM EXECUTING THE REPORT.. I DON'T WANT THE NULL DATA IN MY REPORT DATA.. I WANT ONLY VALUE DATA..

what is process that i want i change the report..

help me.

regards,

venu.

Hi Friends,

i have a requirement....

my report output contains the some value data and some are NUll DATA............BUT I WANTS.. HWNE I AM EXECUTING THE REPORT.. I DON'T WANT THE NULL DATA IN MY REPORT DATA.. I WANT ONLY VALUE DATA..

what is process that i want i change the report..

help me.

regards,

venu.

3 REPLIES 3
Read only

Former Member
0 Likes
568

Try:

WRITE .... NO-ZERO

Rob

Read only

Former Member
0 Likes
568

Hi venu,

from the itab u r displaying...

1. sort itab.

2. delete adjascent from itab.

or

if any field is null then

delete itab where field1 = ' '.

it deletes the records where field is null.

Regards

SAB

Read only

Former Member
0 Likes
568

Hi,

You can do as below:


"While writing the output to the list check the condition.

loop at gt_output.
if gt_output is initial.
exit.
else.
write : / itab-field1, itab-field2.
endif.
endloop.

Thanks,

Sriram Ponna.