... to call.
Figure 102 Activation of interface
Additionally to the sender information (S_RPRP_ID), I’ve filled callback report and callback form name. If you’re familiar with REUSE_ALV_GRID_DISPLAY, ...
... us.
CL_GUI_ALV_GRID class cannot be used to display data without some effort, that’s why many of the beginners starts with the REUSE_ALV_GRID_DISPLAY function module or CL_SALV_TABLE class in their ...
The latest version of each part of FALV can be found on github repository https://github.com/fidley/falv which you can use in abapGit for easier up to date handling.
First demo shows how fast ...
... you goes to the code you'll see it's nothing more than call of REUSE_ALV_GRID_DISPLAY... really old FM, which at the end use CL_GUI_ALV_GRID.
Direct reasons
As I used CL_GUI_ALV_GRID so often ...
... alpha release. Basically what I try to get from this class: Fast CL_GUI_ALV_GRID creation Replacement of REUSE_ALV_GRID_DISPLAY and REUSE_ALV_GRID_DISPLAY_LVC for a simple editable reports to omit ...
... procedural programming, then don't ask them to use OO ALV grid but REUSE_ALV_GRID_DISPLAY. Once you start with classes, switch to cl_gui_alv_grid. If you teach selection-screens don't mix it with ...
Many people still asks how to create field catalog for CL_GUI_ALV_GRID or REUSE_ALV_GRID_DISPLAY on a base of internal table. This is very easy since we have SALV classes, you could see it in my article Create ...
... but when you'd like to reuse them then third one (FM to call dynamic selection-screen in separate task) seems the best. First of all the question is why do we need separate task to call it? Well, ...
... which are the same as in MB51 should be coded with the same names so we can pass them to RM07DOCS by method call_mb51_static. I used REUSE_ALV here just to be able to do it faster, but ALV OO can be used ...
I've decided which way should I go, so now time to do it. I need to do following things to get what I desired: Create a function group or class to be able to reuse the solution in other programs also ...
... call so we can directly restrict searched range with some data. Finally DISPFIELD if set makes the parameter on SHLP display only . So now lets go to the code. To be able to reuse it please create ...
... name then you could store it as a FM or method in a class so you could reuse it without any rework. But to make it more understandable I keep it that way. report zab_select_configuration.
data: gt_zconf type standard table of zconf. ...