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

Create Buttons

Former Member
0 Likes
698

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
Read only

Former Member
0 Likes
668

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
Read only

FredericGirod
Active Contributor
0 Likes
666

hi,

try the transaction BIBS.

Rgd

Frédéric

Read only

Former Member
0 Likes
666

Set the PF status.

Read only

0 Likes
666

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

Read only

Former Member
0 Likes
669

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

Read only

Former Member
0 Likes
666

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.