Download - Notesto Success

Transcript

Top of FormView ResultsBottom of FormABAP Field Symbols are very powerful. Usage of Field-Symbols would provide performance gain, but for that you must use it correctly otherwise you may run into issues.

Field-symbols can provide great performance over using workarea as I have mentioned in my earlier article Use of Field-symbols vs Work area. I have mentioned many articles using Field-Symbols but wanted to note down the basics as part of this code snippet.Page Contents [hide] 1 Declare a Field Symbols 1.1 2 APPEND and INSERT using Field Symbols 2.1 3 Access ITAB rows using Field Symbols 3.1 4 Modify an entry using Field-Symbols: 4.1 5 CHECK field Symbols using IS ASSIGNED 5.1 6 Remove the Reference of the Field Symbols 6.1 Declare a Field SymbolsTYPES: tt_mara TYPE STANDARD TABLE OF mara.DATA: t_mara TYPE tt_mara.*FIELD-SYMBOLS: LIKE LINE OF t_mara. "


Top Related