Do you have any question about this error?
' and get a step-by-step solution and expert tips to fix it quick...'> ' and get a step-by-step solution and expert tips to fix it quick...'> ' and get a step-by-step solution and expert tips to fix it quick...' > '' >
Message type: E = Error
Message class: ACI_COMPILER_GENERIC - EXPERIMENTAL, DON'T USE (ACI: Generic Compiler Messages)
Message number: 117
Message text: Non-completed field-symbol - missing '>'
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.
ACI_COMPILER_GENERIC117
- Non-completed field-symbol - missing '>' ?The SAP error message ACI_COMPILER_GENERIC117 indicates that there is a problem with a field symbol in your ABAP code. Specifically, the error message "Non-completed field-symbol - missing '>'" suggests that the syntax for defining a field symbol is incomplete or incorrect.
Cause:
This error typically occurs when:
- A field symbol is declared but not properly closed with the '>' character.
- There is a syntax error in the declaration of the field symbol.
- The field symbol is being used in a way that does not conform to the expected syntax.
Example of the Error:
If you have a declaration like this:
FIELD-SYMBOLS: <fs_example.
The above line is missing the closing '>' for the field symbol.
Solution:
To resolve this error, you need to ensure that all field symbol declarations are correctly formatted. Here’s how you can fix it:
Correct the Syntax: Make sure that every field symbol declaration is properly closed. For example:
FIELD-SYMBOLS: <fs_example>.
Check for Other Syntax Errors: Review the surrounding code for any other syntax issues that might be causing confusion in the compiler.
Use Proper Field Symbol Usage: Ensure that you are using field symbols correctly in your code. For example, when assigning a value to a field symbol, you should use the
ASSIGN
statement properly:DATA: lv_value TYPE i. FIELD-SYMBOLS: <fs_value>. lv_value = 10. ASSIGN lv_value TO <fs_value>.
Related Information:
By ensuring that your field symbol declarations are complete and correctly formatted, you should be able to resolve the ACI_COMPILER_GENERIC117 error.
Get instant SAP help. Start your 7-day free trial now.
ACI_COMPILER_GENERIC116
Illegal '!' in structured token
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
ACI_COMPILER_GENERIC115
Unmasked '}' within string template
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
ACI_COMPILER_GENERIC121
Missing space
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
ACI_COMPILER_GENERIC131
runaway macro definition, missed 'END-OF-DEFINITION.'
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.