Access all selected personnel numbers using LDB in HCM/HR

Hi there,

I am searching for a possibility to access all selected personnel numbers when using logical database in ABAP HCM/HR.

Example:

NODES: peras.
TABLES: pernr.

START-OF-SELECTION.

GET peras.

In the GET peras event an implicit loop is performed over all selected personnel numbers.
I want to know in which internal table these personnel numbers are stored in LDB and if I can access them.

I do not want to do anything like this as workaround:

DATA personnel_numbers TYPE STANDARD TABLE of persno.
GET peras.
INSERT pernr-pernr INTO TABLE personnel_numbers.

I am interessted in the underlying storage of the LDB!

Can anyone help out?

BR

Scroll to Top