Hi,
Some time ago I wrote this program http://scn.sap.com/community/abap/blog/2013/12/26/sdbadbc--the-program
that utilize cl_sql_connection and the rest of the gang .
In this program I used cl_alv_table_create=>create_dynamic_table .
Now I want to move to RTTS.
Since I am using lvc_s_fcat I was able to increase the field size when using SQL sum function.
The original definition of "Weight of Luggage" (S_LUGWEIGH) is quite small to be a target of sum but using this trick I can have this:
How I can do this with RTTS ? I want to modify the result of cl_abap_elemdescr=>describe_by_name( 'S_LUGWEIGH' ).
Regards.