Do you have any question about this error?
Message type: E = Error
Message class: DDLS - For DDL source handling
Message number: 153
Message text: With select *, no additional columns can be specified explicitly
Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of messages in the SAP system have a message text, however this is frequently insufficient to comprehend or resolve the problem.
To make things easier, more detailed information is frequently added to describe the issue, how to fix it, and the necessary steps or configuration modifications.
Unfortunately, there isn't any extra information in this error notice.
First, use our AnswerBot below to get a possible cause and solution (requires a premium subscription).
Also, review the in-depth Common Questions & Answers listed below; you could discover a solution there or be able to connect with others who have faced similar challenges.
You can also try searching the SAP support portal (support.sap.com) but you need a special user ID to access it. It is possible that an SAP support note exists that provides additional details about the mistake or even steps for fixing it.
DDLS153
- With select *, no additional columns can be specified explicitly ?The SAP error message DDLS153 occurs when you are trying to create or modify a database table in the Data Dictionary (DDIC) using a SQL statement that includes a
SELECT *
clause along with additional column specifications. This is not allowed becauseSELECT *
already selects all columns from the specified table, and you cannot specify additional columns explicitly in the same statement.Cause:
The error is triggered when you attempt to execute a SQL statement that looks something like this:
SELECT * FROM table_name, additional_column
In this case,
additional_column
is an attempt to specify an extra column alongside theSELECT *
, which is not permitted.Solution:
To resolve this error, you need to modify your SQL statement to either:
*Remove the `SELECT `** and explicitly list all the columns you want to retrieve, including the additional columns. For example:
SELECT column1, column2, additional_column FROM table_name
*If you want to keep using `SELECT `,** then do not specify any additional columns. Just use:
SELECT * FROM table_name
Related Information:
SELECT *
in production code, as it can lead to performance issues and unexpected results if the table structure changes. Instead, explicitly specify the columns you need.By following these guidelines, you should be able to resolve the DDLS153 error and write valid SQL statements in your SAP environment.
Get instant SAP help. Start your 7-day free trial now.
DDLS152
Select * and joins cannot be combined
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
DDLS151
As a minimum, the base objects (&) return double fields
What causes this issue? In the field list, columns of at least the named base objects appear several times through the use of the extension statement...
DDLS154
select * could not be expanded; base table & does not exist
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
DDLS155
Length of names list does not match the number of selected columns
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
Click on this link to search all SAP messages.