Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Error when call selection screen

jandrivay
Participant
0 Likes
1,715

Hi all,

can you tell me why this happened?

when i click filter using call selection screen, it's work, and then when i close and i click filter again, that pop up will appear.

SELECTION-SCREEN BEGIN OF SCREEN 101 TITLE TEXT-001.
SELECT-OPTIONS s_vbeln FOR vbrk-vbeln OBLIGATORY.
SELECTION-SCREEN END OF SCREEN 101.

"----------------------------------------------------------

 CASE ok_code.
    WHEN 'FILTER'.
      CALL SCREEN 101 STARTING AT 10 2.
      CLEAR gv_init.

1 ACCEPTED SOLUTION
Read only

Dominik_Tylczynski
SAP Champion
SAP Champion
1,577

Just use CALL SELECTION-SCREEN instead of CALL SCREEN

Dominik Tylczynski

4 REPLIES 4
Read only

Sandra_Rossi
Active Contributor
1,577

Read carefully what says the error message, and read what you do in your program.

Read only

former_member1716
Active Contributor
1,577

jandrivay,

Your Error message explains clearly on the root cause.

What i can suggest is, place a break-point and follow carefully how the system proceeds in executing the code lines. You will surely understand more on the issue.

Read only

Dominik_Tylczynski
SAP Champion
SAP Champion
1,578

Just use CALL SELECTION-SCREEN instead of CALL SCREEN

Dominik Tylczynski

Read only

1,577

Hi 3a9e4ce873a94034b33dc62b0ce600ee .

Thank you, my problem solved.