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: 

In this case, the offset specification 330 for the structure "RT_OUTTAB

Former Member
0 Kudos
115

Hi Guys,

I get error as following, actaully my internal table length is 293 but in below error msg it shows length as 330........pls suggest me how to resolve this

ERROR msg: ' In this case, the offset specification 330 for the structure "RT_OUTTAB

exceeds the length of the character-type initial part (=330).'

1 ACCEPTED SOLUTION

Former Member
0 Kudos
69

Hi,

you have a RT_OUTTAB,

Do one thing find the all field in this structure at run time and declare same internal table via using structure.

Then using move-corresponding filed your take all the value form RT_OUTTAB to new internal table and use new table ...

Regards

Naresh

4 REPLIES 4

former_member156446
Active Contributor
0 Kudos
69

data: lv_string type string.

try to move the data from rt_outtab to lv_string. and do your processing in lv_string

0 Kudos
69

Dude....

my code is in function-exit Include..........

RT_OUTTAB data comes from std code.........checked in std code....could not find out the structure.

Being ECC could not copy RT_OUTAB directly to string varible....I even tried creating itab with type rt_outab......but I get error as rt_outtab is not found.

Former Member
0 Kudos
70

Hi,

you have a RT_OUTTAB,

Do one thing find the all field in this structure at run time and declare same internal table via using structure.

Then using move-corresponding filed your take all the value form RT_OUTTAB to new internal table and use new table ...

Regards

Naresh

0 Kudos
69

Hi Naresh,

Ur suggestion was PERFECT.........that solved my issue.

Thanx for the resolution.