ABAP

How to find the code location to change the column heading of an ALV List

Determine the structure behind the ALV List by right clicking on the ALV List Determine the Table type for the structure using the Where used option in SAP ABAP Determin the corresponding Program for the Table type using the Where used option in SAP ABAP (Ctrl+Shift+F3) Click a particular program in the results list Click […]

How to find the code location to change the column heading of an ALV List Read More »

How to use Table Expressions to modify internal table

              It is much similar to the READ TABLE technique. The table expressions can be used from ABAP 7.40 SP02 version. Particular data record is assigned to the field symbol. The pointers refers to the respective line of record in the internal table. DATA lt_internal_table TYPE TABLE OF ztt_db_table2. FIELD-SYMBOLS <ls_record> TYPE ztt_db_table2. SELECT *FROM

How to use Table Expressions to modify internal table Read More »