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 table

Former Member
0 Likes
437

when we wil erite occurs 0 .how much lenth it will assign?difference b/w occurs 1 and occurs 1?plzz tell

5 REPLIES 5
Read only

Former Member
0 Likes
415

Hi,

If you don't know how many records will be processed in the internal table use occurs 0. Performence wise its not recommended.

If there is only 1 record in the internal table use occurs 1.

Read only

asik_shameem
Active Contributor
0 Likes
415

Hi,

dont bother about that. occurs stmt is obsolete anyway. use typed internal table instead.

Read only

Former Member
0 Likes
415

We dont use OCCURS 0 any more.

Create a typed table instead and make a Work Area of the same Type

Read only

Former Member
0 Likes
415

OCCURS 0 is not used any more.

Create a typed table instead and make a Work Area of the same Type.

Read only

Former Member
0 Likes
415

Hi

Occurs 0 will not allocate any memory space for initital.

L.Velu