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

HR performance tips

Former Member
0 Likes
395

Hi Folks,

I'd like to receive some tips improve performance in HR reports specially payroll.

Thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
350

HI,

Almost all HR reports use the Logical Databse for their selection screens.

You may use the standard BAPI's or FM's to fetch data from the databases.

This will definitely increase the performance.

Regards

Subramanian

2 REPLIES 2
Read only

Former Member
0 Likes
351

HI,

Almost all HR reports use the Logical Databse for their selection screens.

You may use the standard BAPI's or FM's to fetch data from the databases.

This will definitely increase the performance.

Regards

Subramanian

Read only

Former Member
0 Likes
350

Hi,

Do not use LDB's if you have huge data. Better to design your own selection

screen and code accordingly.

While writing the selects try to give as many key fields as possible in the

where condition. Giving BEGDA and ENDDA will help a lot in filtering the

data. Filter the data initially i.e. at the selects only rather than filtering the

records at the end.

If Payroll for a pernr is to be read then there is no way to get the results for

one particular period in one single go .. need to get the entire data and then

filter it accordingly based on the period. Even if there are any FM's they also

do the same ..

Regards,

GSR.