‎2007 Apr 02 6:58 AM
Hi all
Display when Production line or Work Center Hierarchy
Radio Button selected on the selection screen.
crhd-arbpl "Production line
crhh-name " Work Center Hierarchy
plz send this syntax, type "parameters"
‎2007 Apr 02 7:01 AM
parameters : p_arbpl radiobutton group GRP,
p_name radiobutton group GRP.Message was edited by:
Chandrasekhar Jagarlamudi
‎2007 Apr 02 7:04 AM
‎2007 Apr 02 7:04 AM
Hi Samara ,
You can use the syntax
parameters : rb1 radiobutton group G1 ,
rb2 radiobutton group G1.Regards
Arun
‎2007 Apr 02 7:04 AM
hi
PARAMETERS: P_HD RADIOBUTTON GROUP G1 USER-COMMAND RAD DEFAULT 'X',
P_AP RADIOBUTTON GROUP G1 .
and use AT SELECTION-SCREEN output.
CHECK FOR RADIO BUTTON AND Modify screen
using loop at screen and modify screen.
IF P_HD = 'X'.
W_FLAG = 'X'.
ELSE.
CLEAR : W_FLAG.
ENDIF.
regards
navjot
reward if helpfull
‎2007 Apr 02 7:08 AM
Hi samara,
REPORT demo_sel_screen_user_command.
TABLES sscrfields.
PARAMETERS: rad1 RADIOBUTTON GROUP rad USER-COMMAND radio,
rad2 RADIOBUTTON GROUP rad,
rad3 RADIOBUTTON GROUP rad.
PARAMETERS check AS CHECKBOX USER-COMMAND check.
AT SELECTION-SCREEN.
MESSAGE i888(sabapdocu) WITH text-001 sscrfields-ucomm.
START-OF-SELECTION.
WRITE text-002.
This program assigns function codes to a radio button group and a checkbox.
reagrds,
keerthi