What is a Logical Database?
A Logical Database is a special data-retrieval program delivered by SAP, with its own dynamic Selection Screens. You need to code only the processing logic (GET, CHECK, etc., statements). The logical database consists of a read program in which the structure of the local database is reproduced with a selection screen.
Advantages:
- Check functions to validate that user input is complete and correct.
- Meaningful data selection.
- Central authorization checks for database accesses.
- Excellent read access performance while retaining the hierarchical data view determined by the application logic.
If you like this post, you may as well like these too:
- Logical Database FAQs Logical Database Frequently Asked Questions FAQs 1. Preparation of the data records by the L.D.B and reading of the data records in the actual report are accomplished with the command...
- ABAP Programs: Using a Logical Database REPORT ZSOURCE1502. * Work areas TABLES: CUSTOMERS, BOOKINGS. * Reading data GET CUSTOMERS. WRITE / CUSTOMERS-NAME. GET BOOKINGS. WRITE: AT /3 BOOKINGS-FLDATE....
- Logical Databases in ABAP Logical Databases A Logical database is an ABAP Program that reads the data from database tables and makes the data avaliable to the ABAP Programs. The Logical database provides a...



















Leave a Reply