2008 May 09 5:03 PM
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.
2008 May 09 5:07 PM
Hi,
First of all use of OCCUR statement is not advisable.
Also, increasing the size of occurs will not increase the size of table.
An internal tabe can store upto 2GB of data under standard scenario.
Regards,
Amit
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.
2008 May 09 5:07 PM
Hi,
First of all use of OCCUR statement is not advisable.
Also, increasing the size of occurs will not increase the size of table.
An internal tabe can store upto 2GB of data under standard scenario.
Regards,
Amit
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |