This document provides an overview of the main features and functions available in the SAP ABAP workbench, including program maintenance, debugging tools, reporting capabilities, and logical database programming. It describes topics such as the ABAP workbench user interface, developing and maintaining ABAP programs, creating and working with reports, using events and flow control, processing internal tables and database tables, and working with logical databases. The document also includes examples of ABAP code for reports, subroutines, internal tables, and logical database programming.
8. = Event-driven programming language
Working with Reports
Report Syntax and layout
Declaring and Processing data
Events and Flow Control
Subroutines
Reading and Processing Internal tables/Database tables
Selection criteria and Parameters
Working with Logical Databases
Interactive Reporting
18. SELECT * FROM T005T
WHERE LAND1 EQ 'D'.
WRITE: T005T-SPRAS, T005T-NATIO.
ENDSELECT.
SELECT * FROM <dbtab> INTO TABLE <itab> [WHERE ...]
[ORDER BY ...].
Note that there is no ENDSELECT here.
SELECT * FROM <dbtab> APPENDING TABLE <itab> [WHERE ...]
[ORDER BY ...].
If the operation was successful, the system field SY-SUBRC is set to 0, otherwise
to 4.
SELECT SINGLE * FROM <dbtab> WHERE ...
In this case, the WHERE condition may contain only equality conditions linked using
AND. You
have to specify the primary key in full.