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: 

Display 4 checkbox in a row

Former Member
0 Kudos

Hi,

Please tell me that how to Display 4 checkbox in a row on selection screen.

Thanks

1 REPLY 1

Former Member
0 Kudos

Done.

Code is:

SELECTION-SCREEN BEGIN OF BLOCK B1.

selection-screen begin of line.

selection-screen position 20.

parameter : p_cric as checkbox.

selection-screen comment 23(8) c_text for field p_cric.

selection-screen position 60.

parameter : p_hock as checkbox.

selection-screen comment 63(8) h_text for field p_hock.

selection-screen end of line.

SELECTION-SCREEN END OF BLOCK B1.

at selection-screen output.

c_text = 'Cricket'.

h_text = 'Hockey'.