Do you have any question about this error?
Message type: E = Error
Message class: RSWADMDERR2 - BEx Web applications: Error messages for XML/HTML-Parsing
Message number: 126
Message text: XML comments cannot contain --
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.
RSWADMDERR2126
- XML comments cannot contain -- ?The SAP error message RSWADMDERR2126 indicates that there is an issue with XML comments in the context of SAP's ABAP Web Dynpro or other XML-related processing. Specifically, the error states that XML comments cannot contain the sequence
--
, which is not allowed in XML syntax.Cause:
In XML, comments are defined using the syntax
<!-- comment -->
. However, the sequence--
cannot appear within the comment itself, as it would be interpreted as the end of the comment. If your XML contains a comment that looks like this:<!-- This is a comment with -- inside -->
It will trigger the error because the
--
is not valid within the comment.Solution:
To resolve this error, you need to check the XML content that is being processed and ensure that no comments contain the
--
sequence. Here are the steps to fix the issue:
Locate the XML Source: Identify the XML file or string that is causing the error. This could be part of a configuration, data input, or generated output.
Edit the Comments: Review the comments in the XML and modify any that contain the
--
sequence. For example, change:<!-- This is a comment with -- inside -->
to:
<!-- This is a comment with a different phrasing -->
Validate the XML: After making changes, validate the XML to ensure that it is well-formed and does not contain any other syntax errors.
Test the Changes: Re-run the process that was generating the error to confirm that the issue has been resolved.
Related Information:
--
and should be properly closed.By following these steps, you should be able to resolve the error and ensure that your XML comments comply with the required syntax.
Get instant SAP help. Start your 7-day free trial now.
RSWADMDERR2125
Expecting -- or >
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
RSWADMDERR2124
Adjacent hyphens exist within comment
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
RSWADMDERR2127
'<' + '/' + letter not allowed here
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
RSWADMDERR2129
is not allowed after elements
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.