ABAP Runtime Errors

RPERF_ILLEGAL_STATEMENT SAP ABAP Runtime Error rperf illegal statement







RPERF_ILLEGAL_STATEMENT is an ABAP runtime error which you may come across when using or developing within an SAP system. See below for the standard details explaining what it means and how you can avoid or fix this runtime error.

Short Dump Classification: A - ABAP Programming Error

You can view further information about a runtme error by using transaction code ST22 which will show you this and all runtime erros that have happen in your SAP system.

Also check out the Comments section below to view or add related contributions and example screen shots.


RPERF_ILLEGAL_STATEMENT ABAP Runtime Error

Please see program correction for more details about the possible cause of this runtime error and how it could be avoided.

Please see search hints for more details about the possible cause of this runtime error and how it could be avoided.

Please see send to sap for more details about the possible cause of this runtime error and how it could be avoided.

Statement <runtime parameter> is not allowed in this form. Please see abap error for more details about the possible cause of this runtime error and how it could be avoided.

Please see program correction for more details about the possible cause of this runtime error and how it could be avoided.

The program was probably called in a conversion exit or in a field exit. These are performed by function modules called CONVERSION_EXIT_xxxxx_INPUT/OUTPUT or USER_EXIT_xxxxx_INPUT.
Conversion exits are triggered during screen field transports or WRITE statements. Field exits are triggered during field transports from the screen to the ABAP program.
The following ABAP statements are illegal here:

- CALL SCREEN
- CALL DIALOG
- CALL TRANSACTION
- SUBMIT
- MESSAGE W... and MESSAGE I...
- COMMIT WORK, ROLLBACK WORK
- COMMUNICATION RECEIVE
- STOP
- REJECT
- EXIT FROM STEP-LOOP

No - MESSAGE E... statements are allowed either in conversion exists for output conversion (performed by function modules called CONVERSION_EXIT_xxxxx_OUTPUT). Please see abap error for more details about the possible cause of this runtime error and how it could be avoided.