s7oev1
Active Participant
Member since ‎02-06-2020

User Statistics

  • 26 Posts
  • 0 Solutions
  • 77 Kudos given
  • 109 Kudos received

User Activity

A few weeks back, I was debugging a seemingly very weird error. Without getting into too much details, what turned out to be the cause for my issue is that I had a variable declared in a loop. Then, in an if block, the variable was assigned some valu...
Introduction to the ABAP Console Perhaps you may be unfamiliar with this, but newer ABAP versions (7.52+) have the interface if_oo_adt_classrun, which allows printing to a console. This is an alternative to using WRITE statements or the cl_demo_outpu...
Preface My first article on SAP Blogs – Consuming REST APIs with (Cloud) ABAP – was quite well received, so I figured this one might also be an interesting read for ABAP developers. I read this excellent article on developing plain REST APIs in ABAP ...
Introduction There is something that’s been bugging me a lot about the hottest thing happening in ABAP right now – the RESTful Application Programming Model, ABAP RAP for short. Why do we need to modify the language itself to achieve such functionali...
API stands for Application Programming Interface, and comprises a set of standards that allow two applications to talk to each other. REST APIs are a certain pattern of building APIs. They are based on the HTTP protocol, sending and receiving JSON or...