Do you have any question about this error?
Message type: E = Error
Message class: ESH_ENG_CDS_ABAP - ES-CDS/ABAP
Message number: 021
Message text: Required @EnterpriseSearch.enabled is not annotated
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.
ESH_ENG_CDS_ABAP021
- Required @EnterpriseSearch.enabled is not annotated ?The SAP error message
ESH_ENG_CDS_ABAP021 Required @EnterpriseSearch.enabled is not annotated
typically occurs in the context of SAP's Enterprise Search functionality, particularly when working with Core Data Services (CDS) views. This error indicates that a required annotation for enabling Enterprise Search on a CDS view is missing.Cause:
The error arises when a CDS view that is intended to be used for Enterprise Search does not have the necessary annotation
@EnterpriseSearch.enabled
. This annotation is essential for the SAP system to recognize that the CDS view should be included in the Enterprise Search framework.Solution:
To resolve this error, you need to annotate the relevant CDS view with the
@EnterpriseSearch.enabled
annotation. Here’s how you can do that:
Open the CDS View: Access the ABAP Development Tools (ADT) in Eclipse or the relevant transaction in the SAP GUI where the CDS view is defined.
Edit the CDS View: Locate the CDS view that is causing the error and open it for editing.
Add the Annotation: At the top of the CDS view definition, add the following line:
@EnterpriseSearch.enabled: true
Your CDS view definition should look something like this:
@AbapCatalog.sqlViewName: 'YOUR_SQL_VIEW_NAME' @AbapCatalog.compiler.compareFilter: true @EnterpriseSearch.enabled: true define view YOUR_CDS_VIEW_NAME as select from YOUR_TABLE { // Your fields here }
Activate the CDS View: After adding the annotation, activate the CDS view to apply the changes.
Re-test the Enterprise Search: Once the CDS view is activated with the correct annotation, re-test the Enterprise Search functionality to ensure that the error is resolved.
Related Information:
If you continue to experience issues after adding the annotation, ensure that there are no other underlying problems with the CDS view or the Enterprise Search configuration in your SAP system.
Get instant SAP help. Start your 7-day free trial now.
ESH_ENG_CDS_ABAP020
Required @Search.enabled is not annotated
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
ESH_ENG_CDS_ABAP019
Requested entity &1 does not exist
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
ESH_ENG_CDS_ABAP022
Requested entity is not a view
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
ESH_ENG_CDS_ABAP023
Local connection missing/ cannot be created
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.