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

lb_bil_invoice

Former Member
0 Likes
410

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
386

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

1 REPLY 1
Read only

Former Member
0 Likes
387

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