May 2019
Beginner to intermediate
548 pages
12h 39m
English
We can also create a block in selection screens, for example, if we want to create the screen presented here:

We can use the following code to display the screen:
DATA: lv_connid TYPE s_conn_id. SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-000. PARAMETERS: p_car TYPE s_carr_id. SELECT-OPTIONS: s_con FOR lv_connid. SELECTION-SCREEN END OF BLOCK b1. SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-001. PARAMETERS: p_dom TYPE c RADIOBUTTON GROUP rb1, p_int TYPE c RADIOBUTTON GROUP rb1. SELECTION-SCREEN END OF BLOCK b2.
When we need to create text for a field, we can define it ...
Read now
Unlock full access