Search This Blog

Monday, May 4, 2020

Selection Screen Tabs in Executable Programs

Create Tab Strips in Executable Programs in ABAP :



Follow the below steps -

  • Declare the tabs as subscreens

  • Declare a tabbed block in which spacing of the whole tab is defined, Heading length of each tab is defined and also the user command code associated with each tab is defined. In our example tabbed block height is defined as 5 lines, length of headings for both the tabs 15 and the user commands uc100 and uc200.

  • Under the initialization event, the headings are defined, best practice would be to use a text symbol.

  • Under At Selection Screen event of the report handle the user action on the tabs. This is to display the fields under each tab the user clicks.

Sample code -


Keep Exploring.