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 system generated selection screen. The ABAP program must specifically refer to the logical database name in the  program attributes. The Coder does not have to worry about the screen design or coding any SQL in order to get the required data. The logical database handles it automatically.

The logical database is hierarchical in structure composed of several nodes. A developer can control the depth of the data retrieval by using the GET <NODE> statement. It may not be a good idea to use a logical database if the only data your program requires is in the last node of a deep hierarchy. The more performance friendly approach would be to program the data retrieval.

The developer can call the logical database directly from the ABAP program using the function module LDB_PROCESS.

ERP Avatar

2 responses to “Logical Databases in ABAP”

  1. charan Avatar
    charan

    i want to generate the out put data dynamically.i have a selection screen with 6 inputfields.out of that i have two fileds with date_from and date_to.i have to generate an output file with headers and data dynamically with the base of date_from and date_to.suppose

    date_from : 02.2007

    date_to : 09.2009

    then i want the data with headers start from 02.2004 to 09.2009 dynamically.

    itz very urgent plz helpme out.

    1. admin Avatar
      admin

      You have to provide me more information.

      What data do you want in the file?

Leave a Reply

Your email address will not be published. Required fields are marked *