Purpose Simplify a selection screen Standard ABAP lists typically start with a selection screen that offers a large list of selection criteria and parameters. If you simplify this screen it will save your users time and avoid errors. |
Solution
Example
Simplified screen: GuiXT Script // remove unused selections del F[Purchase requisition] F[Purchase requisition]+(0,120) del F[Material] F[Material]+(0,120) del F[Material group] F[Material group]+(0,120) del F[Network/order] F[Network/order]+(0,120) del G[Additional WBS element criteria] // Set fixed value "ALV" for list type and remove parameter del F[Scope of list] // remove horizontal line after "Project" // remove whole selection block at the end of the screen // remove all empty lines from screen
Remark
that allows the user to display the hidden selections This is explained in the next example "Toggle
between 'simplified' and 'standard'" |
Components |