Code :
REPORT ZVP_PRACTICE.
DATA: VAR1(50) TYPE C,
OUTPUT TYPE I.
VAR1 = 'HELLO WORLD!'.
OUTPUT = STRLEN( VAR1 ).
WRITE:/ 'LENGTH OF THE STRING IS :',OUTPUT.
Output :
LENGTH OF THE STRING IS : 12
IDE Used To Test This Code : SAP Login 730
Try this code in your computer for better understanding. Enjoy the code. If you have any Question you can contact us or mail us.We will reply you as soon as possible.
REPORT ZVP_PRACTICE.
DATA: VAR1(50) TYPE C,
OUTPUT TYPE I.
VAR1 = 'HELLO WORLD!'.
OUTPUT = STRLEN( VAR1 ).
WRITE:/ 'LENGTH OF THE STRING IS :',OUTPUT.
Output :
LENGTH OF THE STRING IS : 12
IDE Used To Test This Code : SAP Login 730
Try this code in your computer for better understanding. Enjoy the code. If you have any Question you can contact us or mail us.We will reply you as soon as possible.
Post a Comment