I have a requirement to display the tcode description along with tcode field(column) in the output ALV grid of the report SM20
.
The report already contain the tcode field (column) , so just want to add an additional column in the output to show the description of tcode along with the tcode.
TSTCT
is the table and TTEXT
is the field for tcode description.
How can i achieve this using enhancement .
I have searched and found that in the include rsau_class_auditlist_impl
there is a method i.e METHOD write_list_about_auditlog
. In that method the itab is filled by
go_sal_rf->get_result_tab( EXPORTING id_reset = abap_false
CHANGING et_out_ext = mt_outtab_l ).
So as for me I have to implement the enhancement in this method. Please, guide me how will I do the enhancement, so that it will display one column in the output.