Last active
September 29, 2015 07:27
-
-
Save hugo-dc/1566604 to your computer and use it in GitHub Desktop.
Field-Symbols
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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