SAPSQL_MISSING_INTO_CLAUSE 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.
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.
The INTO clause is missing in a SELECT command.
Please see abap error for more details about the possible cause of this runtime error and how it could be avoided.
For every SELECT command, an INTO area must be defined - either
explicitly or implicitly (using the TABLES statement).
In simple variants of SELECT COUNT(*) too, the INTO area does not need
to be explicitly specified. If COUNT(*) is used together with an alias
(AS) or a grouping statement (GROUP BY, HAVING) however, the INTO
clause must be explicitly specified.
Please see abap error for more details about the possible cause of this runtime error and how it could be avoided.
SAPSQL_MISSING_INTO_CLAUSE - sapsql missing into clause SAPSQL_MISSING_FOR_COLUMNS - sapsql missing for columns SAPSQL_MISSING_CREATING_ENTRY - sapsql missing creating entry SAPSQL_MISSING_ALIAS - sapsql missing alias SAPSQL_LIKE_VAL_TYPE - sapsql like val type SAPSQL_LIKE_QUOTES - sapsql like quotes