Application Development 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: 

LDBS IN HR ABAP

Former Member
0 Kudos
211

Hi All,

why we are using LDB'S in HR ABAP PRG..

and use of END-OF-SELECTION.

reply soon plz.........

regards,

vijay.

3 REPLIES 3

Former Member
0 Kudos
91

Hi,

Using of ldb, its pick up the required data. End-of-selection is like end of loop.

Regards,

Bhaskar

former_member181962
Active Contributor
0 Kudos
91

LDBs are used in other modules but more frequently used in hr programming.

This would relieve the programmer from writing cumbersome selects on the tables which would have many conditions if he were to write a select on his own.

REgards,

Ravi

suresh_datti
Active Contributor
0 Kudos
91

It is a matter of choice.. using LDB will give you the option of in-built Authn Checks & a host Std Selection screens.. you can also easily buil;d a custom sele screen too.

the END-OF-SELECTION is similar to an ENDSELECT.. it closes the GET PERNR loop.. ie The Infotype records of each person are available between the GET PERNR & END-OF-SELECTION statements.

~Suresh