ABAP Programs: Working with Field symbols
REPORT CHAP2401.
* Defining a Field Symbol
FIELD-SYMBOLS < FS>.
* Variable for later use
DATA FIELD VALUE 'X'.
* Assigning a field to a Field Symbol
ASSIGN FIELD TO < FS>.
* Using a Field Symbol which has an assigned field
WRITE < FS>.
If you like this post, you may as well like these too:
- ABAP Programs: Simple examples of field conversion REPORT ZSOURCE0702. * Conv
- ABAP Programs: Using Symbols and Icons REPORT ZSOURCE0806. * Decl
- ABAP Programs :Using Field Symbols for variable parts of fields REPORT ZSOURCE2402. DATA:
- ABAP Programs:Using Field Symbols for components of a structure REPORT ZSOURCE2403. * Tabl
- ABAP Program : Working with Temporary Programs Ever had a need to create
















Leave a Reply