Hi, everyone.
i am getting the following error.
"No roll storage space of length 9728 available for OCCURS area. area.".
====================================================
method WDDOINIT .
DATA IS_SXMSPMAST type REF TO IF_WD_CONTEXT_NODE.
DATA lt_sxmspmast type STANDARD TABLE OF sxmspmast.
IS_SXMSPMAST = wd_Context->get_Child_Node( Name = `SXMSPMAST_NODE` ).
select * from SXMSPMAST into corresponding fields of table lt_sxmspmast up to 30 rows.
if sy-subrc eq 0.
IS_SXMSPMAST->Bind_Table( lt_sxmspmast ).
endif.
endmethod.
===========================================
please help me!