' 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...' > '' >

How To Fix ACI_COMPILER_GENERIC117 - Non-completed field-symbol - missing '>'


SAP Error Message - Details

  • 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 '>'

  • Show details Hide details


  • Self-Explanatory Message

    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.



    What else can you do?

    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.


Smart SAP Assistant

  • What is the cause and solution for SAP error message 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:

    1. A field symbol is declared but not properly closed with the '>' character.
    2. There is a syntax error in the declaration of the field symbol.
    3. 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:

    1. Correct the Syntax: Make sure that every field symbol declaration is properly closed. For example:

      FIELD-SYMBOLS: <fs_example>.
    2. Check for Other Syntax Errors: Review the surrounding code for any other syntax issues that might be causing confusion in the compiler.

    3. 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:

    • Field Symbols: Field symbols in ABAP are used to create dynamic references to data objects. They are similar to pointers in other programming languages.
    • Syntax Check: Always perform a syntax check in the ABAP editor (transaction SE38 or SE80) to catch such errors before executing the program.
    • Documentation: Refer to the official SAP documentation for more details on field symbols and their usage in ABAP programming.

    By ensuring that your field symbol declarations are complete and correctly formatted, you should be able to resolve the ACI_COMPILER_GENERIC117 error.

    • Do you have any question about this error?


      Upgrade now to chat with this error.


Instant HelpGet instant SAP help. Start your 7-day free trial now.


Related SAP Error Messages

Click the links below to see the following related messages:

Click on this link to search all SAP messages.


Rating
ERPlingo simplifies finding the accurate answers to SAP message errors. I now use every week. A must have tool for anyone working with SAP! Highly recommended!
Rate 1
Kent Bettisworth
Executive SAP Consultant