cancel
Showing results for 
Search instead for 
Did you mean: 

The limit of smartform

former_member182421
Active Contributor
0 Kudos

When I launch a smartform come back with a DUMP with the next message TSV_TNEW_PAGE_ALLOC_FAILED : You attempted to extend an internal table, but the required space was not available.

the source code of program "LSTXBCOT2"

  • remove some commands: CT, CB

loop at p_winotf into l_otf.

case l_otf-tdprintcom.

when pc_id_color_text.

if l_last_ct <> l_otf.

l_ct = l_otf.

else.

clear l_ct.

endif.

when pc_id_color_box.

if l_last_cb <> l_otf.

l_cb = l_otf.

else.

clear l_cb.

endif.

when pc_id_string.

if not l_ct is initial.

append l_ct to l_newotf.

l_last_ct = l_ct.

clear l_ct.

endif.

append l_otf to l_newotf.

when pc_id_box or pc_id_line.

if not l_cb is initial.

append l_cb to l_newotf.

l_last_cb = l_cb.

clear l_cb.

endif.

append l_otf to l_newotf.

when others.

append l_otf to l_newotf. <----


DUMP

endcase.

endloop.

The smatform runs ok if I launch it with less data, Somebody can help?

Regads,

Luis

Accepted Solutions (1)

Accepted Solutions (1)

former_member182421
Active Contributor
0 Kudos

That was a Basis customizing for the sizing of Internal Tables

Answers (0)