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
how to genernate 21 sencondary index
Did you create any joins?
How do you process errors in session method ? : abap bdc
What is asap methodology? : sap abap hr
can anybody give me functional specification (or table name & field names) of stock analysis report, work in progress report,generating vendor detailed list
Can we use write statements in screen fields?if not how is data transferred from field data to screen fields?
What are the various types of selection screen event?
Explain what is a logical database?
What are logical databases? : abap hr
Table events aNd table maintains generation
What is static attribute
What is the difference between a structure and a table?
How we format the data before writing a statement in the report?
Explain the disadvantages of different types of bdc's?
In events, start-of-selection is a default event. When we have to use this event explicitly? Why?