In a screen i have 2 radio buttons and 2 text fields,if i
select the one radio button one text field has to be enable
and when i select another one,other text field has to be
enable,in the at selection screen output event how it was
happen?this event has to effect once i press enter
naa.......... how the screen knowing that?
Answer Posted / ananda babu uppara
Check this code and try this.
DATA: d_ucomm LIKE sy-ucomm.
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
PARAMETERS: india RADIOBUTTON GROUP rad1 USER-COMMAND act
DEFAULT 'X',
Field1(10) MODIF ID a,
austria RADIOBUTTON GROUP rad1,
Field2(10) MODIF ID b.
SELECTION-SCREEN END OF BLOCK b1.
AT SELECTION-SCREEN.
d_ucomm = sy-ucomm.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF india = 'X'.
IF screen-group1 = 'B'.
screen-active = 0.
ENDIF.
ELSEIF austria = 'X'.
IF screen-group1 = 'A'.
screen-active = 0.
ENDIF.
ENDIF.
MODIFY SCREEN.
ENDLOOP.
| Is This Answer Correct ? | 7 Yes | 3 No |
Post New Answer View All Answers
What do you mean by pooled tables in sap abap? Also explain what do you mean by table pool? : abap data dictionary
What is the use of f4if_shlp_exit_example function module ? : sap abap data dictionary
What are the personnel administration related infotypes? : abap hr
What are aggregated objects
what is diff between ECC 5.0 AND ECC 6.0
Suppose the client wants me the vacancy to be displayed on a website as well as ess. How should I do it? : sap abap hr
What are the functional modules used in sequence in bdc? : abap hr
What is the function of a domain?
What are the different types of parameters?
What are conversion routines? : abap data dictionary
Does the call transaction method allow multiple transactions to be processed by sap?
Explain how to create any functions? How to go about it?
What is netweaver???what is the relationship with ABAP?
A field containing quantity amounts (data type quan) must be assigned to a referencetable and a reference field. Explain?
What is partner selection?