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

Error in program

Former Member
0 Likes
982

Error msg:

The work area "LT_ZMM_ISSLIP" is not long enough.

Source code :

modify zmm_isslip from table lt_zmm_isslip.

Plz guide.

Thanks in advance

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
962

Hi,

The structure of "zmm_isslip " is not same as the

structure " lt_zmm_isslip".

So make the both structures same.

Don't forget to reward if useful...

9 REPLIES 9
Read only

JozsefSzikszai
Active Contributor
0 Likes
962

hi,

what are the definitions of zmm_isslip and lt_zmm_isslip? seems they are different...

ec

Read only

Former Member
0 Likes
962

Hi,

while declaring table lt_zmm_isslip u forgot to use occurs

Regards

Read only

0 Likes
962

well friend you have to to use occur addition with table lt_zmm_isslip

reward if useful

keep rockin

vivek

Read only

0 Likes
962

data : lt_zmm_isslip type standard table of ty_zmm_isslip.

stii error is thr.

Read only

Former Member
0 Likes
962

hi..

there is some problem in your table declaration..

it is not declared as a table but it is a table line..

use occur or standard table of..

Reward if helpful,

Gaurav J.

Read only

Former Member
0 Likes
962

declare your table as standard table of

or

if you are definying by DATA then use OCCURS .

this will work similar to paging concept.

reward if helpful

kushagra

Read only

Former Member
0 Likes
963

Hi,

The structure of "zmm_isslip " is not same as the

structure " lt_zmm_isslip".

So make the both structures same.

Don't forget to reward if useful...

Read only

JozsefSzikszai
Active Contributor
0 Likes
962

hi,

you have to declare like this:

DATA : lt_zmm_isslip TYPE STANDARD TABLE OF zmm_isslip WITH HEADER LINE.

hope this helps

ec

Read only

Former Member
0 Likes
962

Hi,

data : lt_zmm_isslip TYPE ty_zmm_isslip OCCURS

0 WITH HEADERLINE.