cancel
Showing results for 
Search instead for 
Did you mean: 

What is the correct answer of Step 7?

Seongwoong_Kim
Explorer
0 Kudos

Tutorials: https://developers.sap.com/tutorials/abap-environment-console-application.html
--------------------------

I have enjoyed the tutorial. Thanks.

For Step 7, I have responded as "out.write( 'Hello SAP Cloud Platform ABAP Environment!' )."

I don't know what else answer would be the correct answer, but it does not complete.

Would you please help me to complete this tutorial? Thanks.

Sandra_Rossi
Active Contributor

For more information about ->, look at the ABAP documentation.

-> is named the object (or instance) component selector.

Glossary - object component selector,

Accepted Solutions (1)

Accepted Solutions (1)

peterpersiel
Advisor
Advisor
0 Kudos

Hello,

please check the syntax of your answer. Correct answer is as follows:

out->write( 'Hello SAP Cloud Platform ABAP Environment!' ).

Best regards,
Peter

Seongwoong_Kim
Explorer
0 Kudos

Hello Peter,

Thank you very much for your quick answer. I could complete and run it with my ADT. Thanks again.

Answers (1)

Answers (1)

Peeyush_Nagpal
Discoverer
0 Kudos

Hello,

You need to call the method using ->

So the correct answer will be

out->write( 'Hello SAP Cloud Platform ABAP Environment!' ).
Seongwoong_Kim
Explorer

Thank you very much for your quick answer!!. I could complete and run it with my ADT.