Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Regarding ALV subtotal text.

Former Member
0 Kudos

Hi,

I need to add text for the subtotal value. Got an option like in the layout wa can add one of the attribute subtotals_text. But it is not working.Please give a solution.

Thanx in advance.

2 REPLIES 2

Former Member
0 Kudos

Hi,

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.

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.

<b>EXAMPLE</b>

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

2. subtotal_text . Register this event with SET HANDLER . 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

3. plane type . 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.

Former Member
0 Kudos

Hi Sreekanth,

Thankx for the reply.

But it is little bit confusing.Can you please make it clear?

One more thing is it is working for ALV list output.

Regards,

Selvakumar K.