Skip to Content
0
Former Member
Jun 05, 2014 at 10:03 AM

Dump regarding 'Error in module RSQL 'in dynamic internal table

58 Views

Here is a Dump regarding 'Error in module RSQL of the database interface'.My program runs fine if 100 rows is getting selected from SAP Table.But for mass selection program is giving Dump. The program has dynamic selection of any SAP Table with dynamic selection ranges.I have attached below snippet code for your understanding and analysis.

Looking forward your kind support.

* Select Data from table using field symbol which points to dynamic table with packet size
SELECT *
INTO CORRESPONDING FIELDS OF TABLE <fs_table_tmp>
FROM (p_table) PACKAGE SIZE p_packet.
INSERT LINES OF <fs_table_tmp> INTO TABLE <fs_table> .
UNASSIGN <fs_table_tmp> .
ENDSELECT.