Application Development and Automation 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: 
Read only

System Imode too large

Former Member
0 Likes
943

Dear all,

I am a BW guy. i have written ABAP program.

I have delivered the Program to Production .This program runs fine in all development and QA systems .But the program is throwing dump in the Production ( with an error SYSTEM_IMODE_TOO_LARGE).I got input as this is a memory issue and can be rectified by fine tuning the program

Could anyone help on this.

Please find the program in below link

[Program|http://www.4shared.com/file/144544927/3a37f230/REPORT_YSBWVASVAP_no_standard_page_heading.html]

Regards

Bala

Dear all,

I am a BW guy. i have written ABAP program.

I have delivered the Program to Production .This program runs fine in all development and QA systems .But the program is throwing dump in the Production ( with an error SYSTEM_IMODE_TOO_LARGE).I got input as this is a memory issue and can be rectified by fine tuning the program

Could anyone help on this.

Please find the program in below link

[Program|http://www.4shared.com/file/144544927/3a37f230/REPORT_YSBWVASVAP_no_standard_page_heading.html]

Regards

Bala

4 REPLIES 4
Read only

Sm1tje
Active Contributor
0 Likes
778

It is indeed a memory issue, but since I'm not able to look at your code right now I can only suggest you have a look at the memory your report is consuming. You can use the memory analyzer for that (there is a blog / article on SCN somewhere). In general I guess that some of your internal tables are 'too big' (too many entries), so initializing them could help (FREE). On the other hand, it is also possible to change the profile parameter abap/max_imode (basis administrator).

Read only

Former Member
0 Likes
778

Please find the code belwo

Moderator message - Please respect the 2,500 character maximum when posting. Post only the relevant portions of code

Edited by: Rob Burbank on Nov 2, 2009 9:17 AM

Read only

Former Member
0 Likes
778

Search Notes 409641, 417307, 419465, 548845 and 589997.

Regards,

Srinivas

Read only

Former Member
0 Likes
778

The declartion of internal table was changed and used parellel cursor logic

and then program executed successfully