Do you have any question about this error?
Message type: E = Error
Message class: DDLS - For DDL source handling
Message number: 119
Message text: In the ON condition, only the equals operator (=) is allowed
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.
DDLS119
- In the ON condition, only the equals operator (=) is allowed ?The SAP error message DDLS119 indicates that there is an issue with the SQL syntax in a Data Definition Language (DDL) statement, specifically in the context of an
ON
condition in a join operation. The error message states that only the equals operator (=
) is allowed in theON
condition, which means that you cannot use other comparison operators (like<
,>
,<=
,>=
,<>
, etc.) in that context.Cause:
The error typically occurs when you are trying to define a join condition in a SQL statement (like a
JOIN
clause) and you are using an operator other than=
. For example, if you have a statement like this:SELECT * FROM table1 JOIN table2 ON table1.id > table2.id
This would trigger the DDLS119 error because the
>
operator is not allowed in theON
condition.Solution:
To resolve this error, you need to modify your SQL statement to use the equals operator (
=
) in theON
condition. If you need to express a more complex condition, you can do so in theWHERE
clause after theJOIN
. Here’s how you can rewrite the previous example:SELECT * FROM table1 JOIN table2 ON table1.id = table2.id WHERE table1.id > table2.id
Related Information:
ON
clause is used to specify the condition for the join. It is typically used to match rows from two tables based on a common key.By following these guidelines, you should be able to correct the error and successfully execute your SQL statements.
Get instant SAP help. Start your 7-day free trial now.
DDLS118
Generic view cannot be set up; error while reading the A version
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
DDLS117
Generic view cannot be set up due to duplicate fields
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
DDLS120
& & is defined in multiple DDL sources (&)
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
DDLS121
Append & for base table &: no fields found
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.