2020 Apr 26 11:38 AM
sorry, guys,
ABAP newbie question, got error field "HELLO" is unknown
REPORT ZY_01_HELLOWORLD.
write ‘Hello World!’.
2020 Apr 26 1:34 PM
I think the apostrophe symbol ' was copied incorrectly. --> write ‘Hello World!’.
Try replacing it with teh apostroph symbol of your keyboard. I think it will work.
Thanks, Roxani
2020 Apr 26 1:34 PM
I think the apostrophe symbol ' was copied incorrectly. --> write ‘Hello World!’.
Try replacing it with teh apostroph symbol of your keyboard. I think it will work.
Thanks, Roxani
2020 Apr 26 1:41 PM
2020 Apr 26 9:26 PM
" This statement works, because it uses the correct literal
write 'Hello World!'.
" This is your statement, which doesnt work, because it is the wrong literal
" If you look closely, you see the difference between 'correct' and ‘wrong‘
" And the code tool for ABAP coding displays it correctly as well, showing that the above is recognized as a text whereas in the second it is not
write ‘Hello World!’.
2020 Apr 26 9:49 PM
Please use the CODE button to format your code so that it's shown in a more user-friendly format (colorized).
Your code, well formatted:
REPORT ZY_01_HELLOWORLD.
write ‘Hello World!’.