‎2011 Jan 04 11:24 AM
Hi,
I have created a dynamic table using create_dynamic_table method of class cl_alv_table_create.
I am displaying this table using factory method of cl_salv_table class.
The problem is in output i am not getting Summation icon on toolbar.
How to get this icon.
‎2011 Jan 04 11:41 AM
Do you have any amount or number fields in the catalog at all? As far as I know, the totals function is only available if there are fields that can be summed up.
Thomas
‎2011 Jan 05 4:37 AM
‎2011 Jan 04 11:41 AM
Have you done this ?? . You should have a numeric field to make it enabled.
METHOD pf_status.
DATA: lf_functions TYPE REF TO cl_salv_functions_list.
lf_functions = pc_alv->get_functions( ).
lf_functions->set_all( abap_true ).
ENDMETHOD. "pf_status