‎2008 Feb 04 7:54 AM
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
‎2008 Feb 04 8:26 AM
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...
‎2008 Feb 04 7:57 AM
hi,
what are the definitions of zmm_isslip and lt_zmm_isslip? seems they are different...
ec
‎2008 Feb 04 7:59 AM
Hi,
while declaring table lt_zmm_isslip u forgot to use occurs
Regards
‎2008 Feb 04 8:03 AM
well friend you have to to use occur addition with table lt_zmm_isslip
reward if useful
keep rockin
vivek
‎2008 Feb 04 8:38 AM
data : lt_zmm_isslip type standard table of ty_zmm_isslip.
stii error is thr.
‎2008 Feb 04 8:03 AM
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.
‎2008 Feb 04 8:07 AM
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
‎2008 Feb 04 8:26 AM
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...
‎2008 Feb 04 8:43 AM
hi,
you have to declare like this:
DATA : lt_zmm_isslip TYPE STANDARD TABLE OF zmm_isslip WITH HEADER LINE.
hope this helps
ec
‎2008 Feb 04 8:57 AM
Hi,
data : lt_zmm_isslip TYPE ty_zmm_isslip OCCURS
0 WITH HEADERLINE.