2007 May 04 9:45 PM
I need to put a condition in my table main area such so that only those items with actual billed quantity > 0 are displayed
it_gen in is_bil_invoice has field fkimg
so in the condition i tried to put is_bil_invoice-it_gen-fkimg, but this gives me syntax
what is the correct way to do this
thanks
2007 May 04 9:51 PM
Hi,
In the program..delete the records from the internal table that are less than or equal to zero..
Ex..
DELETE IT_GEN WHERE FKIMG <= 0.
OR
LOOP AT IT_GEN WHERE FKIMG > 0.
Display..
ENDLOOP.
Thanks,
Naren
I need to put a condition in my table main area such so that only those items with actual billed quantity > 0 are displayed
it_gen in is_bil_invoice has field fkimg
so in the condition i tried to put is_bil_invoice-it_gen-fkimg, but this gives me syntax
what is the correct way to do this
thanks
2007 May 04 9:51 PM
Hi,
In the program..delete the records from the internal table that are less than or equal to zero..
Ex..
DELETE IT_GEN WHERE FKIMG <= 0.
OR
LOOP AT IT_GEN WHERE FKIMG > 0.
Display..
ENDLOOP.
Thanks,
Naren
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |