Posts

Showing posts with the label abap selection screen skip line

Selection-Screen (SAP ABAP Keyword) Syntax & Examples

Image
INTRODUCTION: - PARAMETERS statement/keyword is used for single field entries in the selection screen. - SELECT-OPTIONS statement/keyword is used for complex selections. - SELECTION-SCREEN statement/keyword is used for formatting the selection screen. - Programmer gets a great deal of control on how to present the User Interface / Selection Screen to the user. Using the options available with the SELECTION-SCREEN statement, the look of the screen can be formatted as per the requirement. - SELECTION-SCREEN is used to form blocks by combining several PARAMETERS , SELECT-OPTIONS , comments etc. on one line. - The standard selection screen of executable programs is predefined and has screen number 1000 . - A SELECTION-SCREEN block can contain keywords like PARAMETERS , SELECT-OPTIONS , COMMENT, PUSH-BUTTON etc. SYNTAX: 1) SELECTION-SCREEN BEGIN OF LINE. ........... ........... SELECTION-SCREEN END OF LINE. This option is used to have several elements in ...