Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

radiobutton

Former Member
0 Likes
643

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"

5 REPLIES 5
Read only

Former Member
0 Likes
580
parameters : p_arbpl radiobutton group GRP,
                   p_name radiobutton group GRP.

Message was edited by:

Chandrasekhar Jagarlamudi

Read only

Former Member
0 Likes
580

parameters : p_arbpl type crhd-arbpl ,

p_name type crhh-name .

Read only

Former Member
0 Likes
580

Hi Samara ,

You can use the syntax

parameters : rb1  radiobutton group G1 , 
             rb2  radiobutton group G1.

Regards

Arun

Read only

Former Member
0 Likes
580

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

Read only

Former Member
0 Likes
580

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