Application Development 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: 

Create Buttons

Former Member
0 Kudos

Can any expert plz tell me the code for addding the Gui components like buttons,radio buttons check box etc. in normal reports.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

SELECTION-SCREEN:

BEGIN OF SCREEN 500 AS WINDOW TITLE title,

PUSHBUTTON 2(10) but1 USER-COMMAND cli1,

PUSHBUTTON 12(30) but2 USER-COMMAND cli2

VISIBLE LENGTH 10,

END OF SCREEN 500.

Refer the documentation for SELECTION-SCREEN for further information

5 REPLIES 5

FredericGirod
Active Contributor
0 Kudos

hi,

try the transaction BIBS.

Rgd

Frédéric

Former Member
0 Kudos

Set the PF status.

0 Kudos

report program - selection -screen.

you can create a PF-status and call the same at selection screen output.

or use

selection-screen function key 1 . while defining the selection screen.

list output screen:

you can call your own pf-status

Regards

Raja

Former Member
0 Kudos

SELECTION-SCREEN:

BEGIN OF SCREEN 500 AS WINDOW TITLE title,

PUSHBUTTON 2(10) but1 USER-COMMAND cli1,

PUSHBUTTON 12(30) but2 USER-COMMAND cli2

VISIBLE LENGTH 10,

END OF SCREEN 500.

Refer the documentation for SELECTION-SCREEN for further information

Former Member
0 Kudos

Hi sai,

1. simple

2. just copy paste

3.

REPORT ABC.

*----


RADIO BUTTON

PARAMETERS : A RADIOBUTTON GROUP G1 USER-COMMAND US1 DEFAULT 'X',

B RADIOBUTTON GROUP G1,

C RADIOBUTTON GROUP G1.

*----


CHECKBOX

PARAMETERS : D AS CHECKBOX DEFAULT 'X',

E AS CHECKBOX .

*----


BUTTON

SELECTION-SCREEN : PUSHBUTTON 50(10) MYBUTTON USER-COMMAND BUT.

regards,

amit m.