Skip to content

Instantly share code, notes, and snippets.

@hugo-dc
Last active September 29, 2015 07:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hugo-dc/1566604 to your computer and use it in GitHub Desktop.
Save hugo-dc/1566604 to your computer and use it in GitHub Desktop.
Field-Symbols
REPORT ztest.
DATA:
v_01 TYPE i VALUE '5',
v_02 TYPE i VALUE '10'.
FIELD-SYMBOLS: <value> TYPE i.
ASSIGN ('V_02') TO <value>.
WRITE:/
<value>.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment