Your error message suggests that you are trying to select too much data, so a couple of questions first:
1. Why can you not specify a Where clause?
2. How many records are held in FEBEP on your system?
You are also selecting ALL of the fields from this table - I am sure you do not need ALL of them for your needs so I would suggest trying to create an itab based on a just those fields that you are actually going to use, for example:
TYPES:
BEGIN OF ty_febep,
kukey LIKE febep-kukey,
esnum LIKE febep-esnum,
END OF ty_febep.
DATA:
i_febep TYPE STANDARD TABLE OF ty_febep.
SELECT kukey esnum
INTO TABLE i_febep
FROM febep.
This might help but I suspect it is more to do with not having a Where condition.
You should only submit an answer when you are proposing a solution to the poster's problem. If you want the poster to clarify the question or provide more information, please leave a comment instead, requesting additional details. When answering, please include specifics, such as step-by-step instructions, context for the solution, and links to useful resources. Also, please make sure that you answer complies with our Rules of Engagement.
Add a comment