Do you have any question about this error?
Message type: E = Error
Message class: DA - Dictionary: Compare, distribution, timer, instantiation
Message number: 104
Message text: Two variables delimiters & in sequence in &
No variable name falls within the variable delimiters.
The system issues an error message and will not allow you to continue with this transaction until the error is resolved.
Specify variable names or remove variables delimiter '&'.
Error message extract from SAP system. Copyright SAP SE.
DA104
- Two variables delimiters & in sequence in & ?The SAP error message DA104 indicates that there is an issue with the way variables are being defined or used in a query or report. Specifically, the error message "Two variable delimiters & in sequence" suggests that there are two consecutive variable delimiters (
&
) in the context where they are not allowed. This typically occurs in the context of variable substitution in queries, reports, or selection screens.Cause:
- Incorrect Syntax: The most common cause of this error is that the syntax used to define or reference variables is incorrect. For example, if you have a string like
&VAR1&&VAR2
, it will trigger this error because of the consecutive&&
.- Variable Definition: If you are defining variables in a way that leads to two delimiters being interpreted in sequence, this can also cause the error.
- Copy-Paste Errors: Sometimes, copying and pasting code or text can inadvertently introduce extra delimiters.
Solution:
Check Variable Syntax: Review the syntax where the error occurs. Ensure that there are no consecutive
&
symbols. For example, if you need to concatenate variables, use a single&
for each variable.
- Correct:
&VAR1&VAR2
- Incorrect:
&VAR1&&VAR2
Variable Definitions: If you are defining variables, ensure that each variable is properly defined and that there are no syntax errors in the definitions.
Debugging: If the error occurs in a complex query or report, try simplifying the query to isolate the part that causes the error. This can help you identify where the issue lies.
Documentation: Refer to SAP documentation or help resources for the specific context in which you are working (e.g., ABAP, BW queries, etc.) to ensure you are following the correct syntax and guidelines.
Related Information:
By carefully reviewing the syntax and ensuring that variable delimiters are used correctly, you should be able to resolve the DA104 error.
Get instant SAP help. Start your 7-day free trial now.
DA103
Control structure not concluded with &
What causes this issue? The subscheme was not concluded.System Response The system issues an error message and will not allow you to continue with t...
DA102
Schema &1 does not exist in program &2
What causes this issue? A scheme was to be instantiated which is not defined in the program.System Response The system issues an error message and w...
DA105
Variable & not bound in &
What causes this issue? The scheme contains a variable which is not globally declared in the program in which the scheme instantiator is called.Syste...
DA106
Unbalanced variables delimiter & in &
What causes this issue? The variable was not concluded with '&'.System Response The system issues an error message and will not allow ...
Click on this link to search all SAP messages.