2009 Jun 24 6:23 AM
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).'
2009 Jun 24 11:21 AM
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
2009 Jun 24 6:26 AM
data: lv_string type string.
try to move the data from rt_outtab to lv_string. and do your processing in lv_string
2009 Jun 24 8:07 AM
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.
2009 Jun 24 11:21 AM
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
2009 Jun 24 1:18 PM
Hi Naresh,
Ur suggestion was PERFECT.........that solved my issue.
Thanx for the resolution.