I have an internal table that is filled in a Function Module READ_OTF_FROM_MEMORY. It was originally definesd as:
DATA: T_OTFDATA_TAB LIKE ITCOO OCCURS 1 WITH HEADER LINE,
I made it:
DATA: T_OTFDATA_TAB LIKE ITCOO OCCURS 10000 WITH HEADER LINE,
However, All of the data is not being returned (truncates about 4/5 thru file)
Is their any other way I can define a large internal table?
Thank-you.