Hi Jim,
data: sorts type ref to cl_salv_sorts.
data: agg type ref to cl_salv_aggregations.,
i_table type ref to cl_salv_table.
sorts = i_table->get_sorts( ).
sorts->add_sort( columnname = 'LINFR' subtotal = abap_true ).
agg = i_table->get_aggregations( ).
agg->add_aggregation( 'DMBTR' ).
Regards,
Venkat