Entering content frame

Syntax documentationsubtotal_text Locate the document in its SAP Library structure

Use

Output text for subtotals in the grid control if the subtotal criterion (column used by the user for calculating the subtotal) is hidden. In the default setting, the ALV Grid Control outputs the column header of the subtotal criterion and the value to which the subtotal calculated refers.

Event parameters

Meaning

ES_SUBTOTTXT_INFO
Type LVC_S_STXT

Structure with information on the subtotal criterion

EP_SUBTOT_LINE
Type Ref To DATA

Reference variable to the inserted subtotal line in the grid control. Columns for which no total was calculated remain set to their initial value.

E_EVENT_DATA
Type Ref To CL_ALV_EVENT_DATA

Attribute M_DATA of this object is a reference to the subtotal text.

 

For an overview, see: Events of Class CL_GUI_ALV_GRID

 

Example

You display a table with data of structure SFLIGHT in an ALV Grid Control. We now change the pre-set subtotal text for subtotal criterion plane type of table SFLIGHT :

  1. Define and implement an event handler method for event subtotal_text . Register this event with SET HANDLER .
  2. Call a subroutine within this method and pass the event parameters to that subroutine.
  3. Event parameters ep_subtot_line and e_event_data contain reference variables to generic data type DATA . This is why you must use field symbols in the subroutine:

FORM method_subtotal_text USING es_subtottxt_info TYPE lvc_s_stxt
                               ep_subtot_line TYPE REF TO data
                               e_event_data TYPE REF TO
                               cl_alv_event_data.

  DATA ls_sflight LIKE sflight.
  FIELD-SYMBOLS: <fs1> STRUCTURE sflight DEFAULT ls_sflight,
                <fs2>.

  IF es_subtottxt_info-criteria = 'PLANETYPE'.
    ASSIGN ep_subtot_line->* TO <fs1>.
    ASSIGN e_event_data->m_data->* TO <fs2>.
    CONCATENATE es_subtottxt_info-keyword ': '
                <fs1>-planetype INTO <fs2>.
  ENDIF.

ENDFORM. " METHOD_SUBTOTAL_TEXT

Result

Check your result as follows:

  1. Calculate the total for a column.
  2. Calculate subtotals for column plane type .
  3. Hide column plane type . To do this, use either the standard context menu or a new layout.

The new text defined is displayed at the beginning of a subtotal line.

 

 

 

 

Leaving content frame