I have 2 radio buttons with 2 fields each on selection
screen.My requirement is like if click on 1st radio button
the second radio button field should be disabled and and
vice versa.How can i do that?

Answer Posted / kavita

AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN
IF R1 EQ 'X' AND SCREEN-GROUP EQ 'S2'.
SCREEN-INPUT = 0.
MODIFY SCREEN.
ENDIF.
IF R2 EQ 'X' AND SCREE-GROUP EQ 'S1'.
SCREEN-INPUT = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP

Is This Answer Correct ?    15 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how to genernate 21 sencondary index

7622


Did you create any joins?

741


How do you process errors in session method ? : abap bdc

781


What is asap methodology? : sap abap hr

766


can anybody give me functional specification (or table name & field names) of stock analysis report, work in progress report,generating vendor detailed list

1736


Can we use write statements in screen fields?if not how is data transferred from field data to screen fields?

762


What are the various types of selection screen event?

756


Explain what is a logical database?

787


What are logical databases? : abap hr

879


Table events aNd table maintains generation

1224


What is static attribute

1280


What is the difference between a structure and a table?

742


How we format the data before writing a statement in the report?

711


Explain the disadvantages of different types of bdc's?

722


In events, start-of-selection is a default event. When we have to use this event explicitly? Why?

786