Dynamic Programming using Field Symbols in ABAP Reports
Field symbols in ABAP reports and programming ABAP using field symbols provides flexibity to ABAP developers. A field symbol in ABAP can be considered as pointers in C programming language.
In this ABAP tutorial, ABAP developers will find a dynamic ABAP programming example using field symbols
The below field symbol sample ABAP report can be considered as a dynamic ABAP programming sample. The field value printed on the screen is determined dynamically by using the input parameter on the selection screen. After the user input is read, the field name is build dynamically with ABAP Concatenate command. Then this text field is evaluated and assigned to field symbol <fs>. Later this field symbol value is printed on the screen using ABAP Write command.