Do you have any question about this error?
Message type: E = Error
Message class: FDT_EXPRESSIONS - Formula & Derivation Tool: Expressions
Message number: 808
Message text: Static method call isn't possible, method &1 has a raw parameter
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.
FDT_EXPRESSIONS808
- Static method call isn't possible, method &1 has a raw parameter ?The SAP error message FDT_EXPRESSIONS808 indicates that there is an issue with a static method call in your ABAP code or in the context of using the Field Data Tool (FDT). The specific message states that the method you are trying to call has a raw parameter, which is not allowed for static method calls.
Cause:
The error occurs when you attempt to call a static method that has a parameter defined as a raw type (e.g.,
RAW
,XSTRING
, etc.). In ABAP, static methods cannot accept raw parameters because they are not compatible with the way static methods are designed to work. Static methods are typically used for utility functions that do not depend on instance-specific data.Solution:
To resolve this error, you can take the following steps:
Check Method Definition: Review the method definition of the method you are trying to call. If it has a raw parameter, consider changing the parameter type to a more compatible type, such as
STRING
orCHAR
, if that fits your use case.Change Method Call: If you cannot change the method definition (for example, if it is part of a standard SAP class), you may need to create an instance of the class and call the method as an instance method instead of a static method.
Refactor Code: If the method is designed to work with raw data, consider refactoring your code to handle the data in a way that does not require a static method call. This might involve creating a wrapper function or using a different approach to achieve the desired functionality.
Consult Documentation: If you are using a third-party library or a specific SAP component, consult the documentation for that component to see if there are any guidelines or best practices regarding method calls and parameter types.
Related Information:
By following these steps, you should be able to resolve the error and successfully call the method without encountering the FDT_EXPRESSIONS808 message.
Get instant SAP help. Start your 7-day free trial now.
FDT_EXPRESSIONS807
Static method call isn't possible, method &1 has a reference parameter
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
FDT_EXPRESSIONS806
Static method call isn't possible, method &1 has a generic parameter
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
FDT_EXPRESSIONS809
Function call &1 not possible, &2 parameter &3 has a reference type
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
FDT_EXPRESSIONS810
Function call &1 not possible, &2 parameter &3 has a generic type
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.