2008 Feb 28 5:58 PM
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.
2008 Feb 28 6:06 PM
2008 Feb 28 6:07 PM
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
2008 Feb 28 6:22 PM
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.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |