Hi,
I am a newbie, Is that possible to display checkbox horizontally, which is by default displayed vertically.
I used parameter command to display checkbox. is that anyother command for displaying input fields in the selection screen in basic listing.
Advance Thanks
regards
Guhapriyan(A) Dinesh
Hi Dinesh,
You will have to do some adjustments for the position, but this is how you basically accomplish it.
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'.
Regards,
Anand Mandalika.
Add a comment