Do you have any question about this error?
Message type: E = Error
Message class: DB - Messages for logical databases and background processing
Message number: 035
Message text: Selection screen & & was not called using CALL SELECTION-SCREEN
You wanted to process screen "&V1& &V2&". This is a selection screen,
generated from PARAMETERS, SELECT-OPTIONS and SELECTION-SCREEN
statements.
You can only call a selection screen with the "CALL SELECTION-SCREEN"
statement, or as the initial screen of a report, transaction or dialog
module. However, this is not the case here.
The system terminated the program.
Contact the program author or your SAP contact person.
Error message extract from SAP system. Copyright SAP SE.
DB035
- Selection screen & & was not called using CALL SELECTION-SCREEN ?The SAP error message DB035 indicates that a selection screen was not called using the
CALL SELECTION-SCREEN
statement. This error typically occurs when there is an attempt to access a selection screen that has not been properly initialized or called in the program.Cause:
- Incorrect Call: The selection screen is not being called correctly in the ABAP program. The
CALL SELECTION-SCREEN
statement must be used to invoke a selection screen.- Screen Number Issue: The screen number specified in the
CALL SELECTION-SCREEN
statement may not exist or may not be defined properly.- Program Flow: The program may be trying to access the selection screen in a context where it has not been initialized or is not appropriate (e.g., after a
SUBMIT
statement without proper handling).- Missing Definition: The selection screen might not be defined in the program or might be defined in a different program/module.
Solution:
Check the CALL Statement: Ensure that the selection screen is being called correctly using the
CALL SELECTION-SCREEN
statement. The syntax should look like this:CALL SELECTION-SCREEN '1000' STARTING AT 10 10.
Replace
'1000'
with the appropriate screen number.Verify Screen Definition: Make sure that the selection screen you are trying to call is defined in the program. You can define a selection screen using the following syntax:
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001. SELECT-OPTIONS: s_field FOR fieldname. SELECTION-SCREEN END OF BLOCK b1.
Check Program Logic: Review the program logic to ensure that the selection screen is being called at the correct point in the program flow. If you are using
SUBMIT
to call another report, ensure that the selection screen is being handled correctly.Debugging: Use the debugger to trace the program execution and see where the error occurs. This can help identify if the selection screen is being called at the right time and context.
Documentation: Refer to the SAP documentation for more details on using selection screens and the
CALL SELECTION-SCREEN
statement.Related Information:
By following these steps, you should be able to identify the cause of the DB035 error and implement a solution to resolve it.
Get instant SAP help. Start your 7-day free trial now.
DB034
Error when applying database-specific restrictions
What causes this issue? An error occurred when adopting the restrictions imposed by the logical database for select options.System Response The proc...
DB033
For selection option &, all signs are excluded
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
DB036
Wrong type in parameter passing to "&1"
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
DB037
Selection screen &1 &2 does not exist
What causes this issue? You wanted to start program "&V1&". This uses selection screen "&V2&". However, the selec...
Click on this link to search all SAP messages.