cancel
Showing results for 
Search instead for 
Did you mean: 

SAP ABAP HR with HANA

akshayrana12
Explorer
0 Kudos
684

How to use SAP ABAP HR on HANA.

What are the best practises of coding in ABAP HR on HANA ?

How to avoid FM like bapi_employee_enqueue, PYXX_READ_PAYROLL_RESULT .. etc... in reports of abap on hana.

View Entire Topic
Patrick_vN
Active Contributor
0 Kudos

I'd think that what goes for ABAP on HANA, remains valid for HR. So I would focus on ABAP best-practices. For ECC on HANA, code optimizations are related to how the code is written, as there are no simplifications involved.

A possible interesting part would be the logical databases though, as I believe these work like SELECT..ENDSELECT statements, which HANA dbases aren't a great fan off.

Then related to the function modules, if you want to lock an employee, then you'll have to use a function module to do so. So not sure how you're gonna avoid the corresponding function module (though there might be an alternative?).