If you would ask me if I would write something about SAP Script then I would definitely answer "Hell no!". I hate SAP Script to be honest, it has for me only one advantage - speed of printou ...
... and you can modify layout or field catalog settings to make it editable. Please check following code to see example of usage:
report zsalv_grid_events.
class lcl_grid_trick definition ...
... you’re in heaven. In eclipse once you want to jump to method or function definition or implementation, you don’t have to save your current work and move to other, you just Ctrl + Click, and ...
... from CL_GUI_ALV_GRID, which is normally not possible. When you look into the class definition you'll notice that there is only one global friend - interface IF_ALV_RM_GRID_FRIEND which has no ...
... LASS
If you create redefinition of ZCL_FALV to change event handling then you need to pass a class description to factory method
CT_TABLE
Table to display, this one is mandatory
...
...
"! done by Lukasz Pegiel for http://abapblog.com
report zdemo_falv05.
data: sflight type standard table of sflight.
class lcl_test definition inheriting from zcl_falv. ...
...
"! done by Lukasz Pegiel for http://abapblog.com
report zdemo_falv04.
data: sflight type standard table of sflight.
class lcl_test definition inheriting from zcl_falv ...
...
"! done by Lukasz Pegiel for http://abapblog.com
report zdemo_falv03.
data: sflight type standard table of sflight.
class lcl_test definition inheriting from zcl_falv. ...
... program shows how to use FALV when you want to use event handlers by your own.
"All" events are handled so you just need to redefine proper method starting from evt_*
"! This is demo for FALV with redefinition of hotspot event handle ...
... le editable reports to omit screen creation
All events are already handled and with redefinition of method I can faster use it
Faster setting of layout and field catalog attributes
Eas ...
... editable reports to omit screen creation All events should be already handled and with redefinition of method I can faster use it Faster setting of layout and field catalog attributes Easy switch ...
... internal table using CL_SALV_CONTROLLER_METADATA and CL_SALV_TABLE. Both methods are created with new ABAP 7.40 SP05 syntax. LVC Field catalog definition class-methods lvc_fcat_from_internal_table ...
...
data: m_object type toav0-object_id.
field-symbols: <toavo> type toav0.
check i_purchase_requisition is not initial and i_purchase_order is not initial. ...
...
* definition of the selections screen
*----------------------------------------------------------------------*
selection-screen begin of block disp with frame title text-003. ...