SAPABAP

How to insert functions to the Functions toolbar of new SAP ALV Display CL_SALV_TABLE

The new ALV Display based on the class CL_SALV_TABLE offers you the possibility to add a new function. It is completely based on the Display mode. In the container mode, the function is added through the functions object. In the complete mode, it is added through the GUI status for the Dynpro. Adding functions in …

How to insert functions to the Functions toolbar of new SAP ALV Display CL_SALV_TABLE Read More »

How to activate the functions Toolbar of new ALV Display CL_SALV_TABLE

By default, the function toolbar is not displayed in the new ALV Display. It must be activated. The functions object is retrieved from the ALV Object. In order to activate the complete function toolbar, the set_all( ) method of the function object must be called. DATA lr_functions_list TYPE REF TO cl_salv_functions_list. lr_functions_list = lr_alv_object->get_functions( ). …

How to activate the functions Toolbar of new ALV Display CL_SALV_TABLE Read More »

How to display icon in SAP ALV cell

There are three important steps involved in displaying icon in the ALV cell. Extension of Internal table with the additional field ICON_D. Filling the icon field to the records of ALV table. Assignment of field ‘ICON’ to field catalog. Extension of Internal table with field ICON_D. TYPES: BEGIN OF ty_contact.                             INCLUDE STRUCTURE ztt_db_table2.                             …

How to display icon in SAP ALV cell Read More »