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

internal tables

Former Member
0 Likes
481

when you are using 2 internal table in program, you have

decided to use for all entries statement to retrieve data

but unfortunately there are no records in the first internal

table. What will be the result? (2nd internal table contains

records).

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
462

hi,

no records will be found..

4 REPLIES 4
Read only

Former Member
0 Likes
463

hi,

no records will be found..

Read only

former_member378318
Contributor
0 Likes
462

If the first internal table is empty then the select will return ALL records matching the selection criteria.

Read only

Former Member
0 Likes
462

Hi

To all gurus helping me out. As iam new to this field.

Thanks&Regards

Suri

Read only

Former Member
0 Likes
462

Hi,

Use the statement

IF NOT ITAB1[] IS INITIAL.

MAKE SELECTION FOR ITAB2

ENDIF.

Regards,

Iff