LIST_TO_MANY_TABLE_ENTRIES is an ABAP runtime error which you may come across when using or developing within an SAP system. See below for the standard details explaining what it means and how you can avoid or fix this runtime error.
Short Dump Classification: A - ABAP Programming Error
You can view further information about a runtme error by using transaction code ST22 which will show you this and all runtime erros that have happen in your SAP system.
Also check out the Comments section below to view or add related contributions and example screen shots.
%_FMBS contains information about formatting as it is displayed in the report SHOWCOLO. In this case, all the report rows probably have different formats. Try to avoid this.
%_FMBX contains information about icons, symbols, checkboxes, display orientation and lines. In this case, the display of icons, symbols, etc. is probably different in all report rows. Try to avoid this.
%_FSEL contains information about the field positions of the display. In this case, different fields have been used in each row, e.g. by local variables in a recursion. Use global variables here.
%_FIDO contains information about display fields. In this case, too many different fields have been used, e.g. by local variables in a recursion. Use global variables here.
Please see search hints for more details about the possible cause of this runtime error and how it could be avoided.
Please see send to sap for more details about the possible cause of this runtime error and how it could be avoided.
A table in the list distribution can not include any more lines.
Please see abap error for more details about the possible cause of this runtime error and how it could be avoided.
The list table <runtime parameter>-NAME is too full. Only <runtime parameter> entries are allowed.
When creating the list, a list table can not include any more lines.