Get Example source ABAP code based on a different SAP table
Logical Databases and Selection Screens in ABAP Release 3.0 ITOC
ABAP_MODIFICATION_NN Checkbox Parameters>
PARAMETERS>> now has an addition called AS CHECKBOX> which can be used to display a parameter on the selection screen as a checkbox.
ABAP_MODIFICATION_NN Matchcode Selection with Logical Databases >
The addition AS MATCHCODE STRUCTURE> of PARAMETERS> makes it possible to use matchcode selection for a logical database>. The standard selection screen contains a box with input fields for matchcode ID and search string. In the database program>, selected records can be processed in the subroutine PUT_xxx_MATCHCODE>. Matchcode selections are a particularly good way of improving performance, since they can be used to restrict the amount of data selected significantly.
ABAP_MODIFICATION_NN SUBMIT rep WITH SELECTION-TABLE rspar. >>
The addition WITH SELECTION-TABLE rspar> makes it possible to specify values passed by WITH clause> to the parameters or selection criteria of a report in an internal table. Here, the table rspar> has the structure of RSPARAMS>. The function module RS_REFRESH_FROM_SELECT_OPTIONS> can be used to fill the table with the content of the current parameters or selection criteria (this FM> replaces the keyword REFRESH respar FROM SELECT-OPTIONS>>). For further information, see the documentation on SUBMIT>>.
ABAP_MODIFICATION_NN Self-Programmed F1> and F4> on Selection Screens>
Self-programmed input help (F4>) and field help (F1>) is now available for both database-specific and report-specific parameters and selection criteria. For database-specific objects, this is done using an addition (VALUE-REQUEST ...> or HELP-REQUEST ...>) with PARAMETERS>> and SELECT-OPTIONS>>. For report-specific objects, the event to be processed is specified directly at F1> or F4> ( AT SELECTION-SCREEN>> ON VALUE-REQUEST FOR ...> or AT SELECTION-SCREEN>> ON HELP-REQUEST FOR ...>).