Skip to Content
0
Jan 12, 2017 at 10:20 PM

Select-Options in Multiple Selection Screens

82 Views

Hello Everyone,

I am trying to impletment the below code. When I go to check the code, I receive an error stating that P_DATE has been already defined. Is there any way to have this defined globally so I can reference the same select-option on both selection screens?

selection-screen begin of screen 100 title TEXT-T03.
parameters: P_BUKRS like PAYR-ZBUKR obligatory,
 	    P_HBKID like PAYR-HBKID obligatory.
select-options: P_HKTID for PAYR-HKTID,
 		P_DATE for SY-DATUM.
selection-screen end of screen 100.

selection-screen begin of screen 200.
parameters: P_FNAME(100) type c obligatory lower case,
 	    urb RADIOBUTTON GROUP ac,
 	    lrb RADIOBUTTON GROUP ac.
select-options: P_DATE for SY-DATUM.
selection-screen end of screen 200.