Application Development 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: 

INFOSET WHERE CLAUSE

Former Member
0 Kudos

Hi,

I want to get data in infoset using where clause .

can you please guid me where i can write my code.

i tried to write in record processing.

i want to check one of the field = 'X' then i

want that data in to infoset otherwise not.

THanks,

Jack

1 ACCEPTED SOLUTION

suresh_datti
Active Contributor
0 Kudos

I would put the code in the record processing.

for ex:

loop at p0006 where not telnr is initial.

*

*enloop

if sy-subrc ne 0.

message i016(rp) with 'error'.

exit.

endif.

~Suresh

1 REPLY 1

suresh_datti
Active Contributor
0 Kudos

I would put the code in the record processing.

for ex:

loop at p0006 where not telnr is initial.

*

*enloop

if sy-subrc ne 0.

message i016(rp) with 'error'.

exit.

endif.

~Suresh