2014 Oct 29 8:32 AM
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!!
2014 Oct 29 8:52 AM
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
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |