From the course: ABAP for SAP Users

Unlock this course with a free trial

Join today to access over 22,600 courses taught by industry experts.

Navigating in the running code

Navigating in the running code - SAP ERP Tutorial

From the course: ABAP for SAP Users

Navigating in the running code

- [Instructor] The system executed the program until this line because there is a breakpoint. The yellow red arrow here indicates the next line to be executed. So the clear statement and rest of the code below hasn't been executed yet. The Select statement that reads the line items is a specific one. It reads them one-by-one. At this state, only the first line item was read from the database into the structure VBAP. But which one? You already know how to view the content of the structure. But what about if you want to display single field from that structure? Now let's view the content of the field line item ID. Just type here the name of the structure, and then the field you want to display, separated by a single hyphen. So this system first read the line item ID 10. And what to do now? How to move on to the next line? For this, the Debugger provides you these navigation buttons up here. They enable you to…

Contents