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

Dump while determining Alerts via Tcode /SAPAPO/AMON1

Former Member
0 Likes
506

Hello Firends,

   I am getting an ABAP Dump GENERATE_SUBPOOL_DIR_FULL, when i am trying to create a dynamic table with help of cl_alv_table_create=>create_dynnamic_table.

I am doing this activity inside a loop for all the alert profiles. It is working fine, when number of alert profiles is less in development system.

But in quality system, where we have huge number of alerts, it gives this dump.

Kindly suggest.

Below is a code snippet :

CALL METHOD cl_alv_table_create=>create_dynamic_table

EXPORTING

it_fieldcatalog = lt_fcat

IMPORTING

ep_table = l_table_ref

EXCEPTIONS

generate_subpool_dir_full = 1

OTHERS = 2.

if sy-subrc = 0.

ASSIGN l_table_ref->* TO <l_aot_tab>.

.......

Rewards for helpful answer!!

Hello Firends,

   I am getting an ABAP Dump GENERATE_SUBPOOL_DIR_FULL, when i am trying to create a dynamic table with help of cl_alv_table_create=>create_dynnamic_table.

I am doing this activity inside a loop for all the alert profiles. It is working fine, when number of alert profiles is less in development system.

But in quality system, where we have huge number of alerts, it gives this dump.

Kindly suggest.

Below is a code snippet :

CALL METHOD cl_alv_table_create=>create_dynamic_table

EXPORTING

it_fieldcatalog = lt_fcat

IMPORTING

ep_table = l_table_ref

EXCEPTIONS

generate_subpool_dir_full = 1

OTHERS = 2.

if sy-subrc = 0.

ASSIGN l_table_ref->* TO <l_aot_tab>.

.......

Rewards for helpful answer!!

1 REPLY 1
Read only

deependra_shekhawat3
Contributor
0 Likes
473

Hi Ruby,

I think there are some limitation of dynamic internal tables  with   cl_alv_table_create=>create_dynamic_table and i think this have been obsolute now. Please try to do this via 'RTTS'. There are many example code if you serch for 'Dynamic Table Using RTTS'.

Thanks

Deeps