Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

logical dbase vs view

Former Member
0 Likes
424

hi,

i know that logical database is a special ABAP/4 program which combines the contents of certain database tables.

i just 1 2 clarify if logical dbase cannot be used like transparent table or view in our customised report as logical database is a program and not a table.

right?

1 ACCEPTED SOLUTION
Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
402

Hi,

Yes Logical database cannot be used as any other transperant table or a view. Since it is a program which uses predefined hirarchial structure to read the data from the TABLES that exist in the database.

Logical database is there to help you to read the data with out you coding for the data retrieval and which also takes care of all authority checks SO we have all that is required for this logically related tables at one central place.

Regards,

Sesh

Message was edited by:

Seshatalpasai Madala

2 REPLIES 2
Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
403

Hi,

Yes Logical database cannot be used as any other transperant table or a view. Since it is a program which uses predefined hirarchial structure to read the data from the TABLES that exist in the database.

Logical database is there to help you to read the data with out you coding for the data retrieval and which also takes care of all authority checks SO we have all that is required for this logically related tables at one central place.

Regards,

Sesh

Message was edited by:

Seshatalpasai Madala

Read only

Former Member
0 Likes
402

Hi,

LDB's are special type of programming which we fetch data from different tables

By defining the HIERARCHY STRUCTURE of tables.

Data is fetched using GET and GET LATE commands, unlike SELECT statement which we use for transperant tables.

Regards,

Anji