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 Implementation

Former Member
0 Likes
707

How is HR module different from other modules, in the context of ABAP...say User-exits, IDocs, RFCs...etc..

-Naveen.

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
679

The main difference is the extensive use of logical databases and cluster tables.

Regards,

Rich Heilman

6 REPLIES 6
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
680

The main difference is the extensive use of logical databases and cluster tables.

Regards,

Rich Heilman

Read only

0 Likes
679

Another difference is the use of buffers, the organizational management structure is stored in a buffer.

Espescially during development this can cause problems.

another difference is the usage of time constraints in infotypes, you'll have to understand how these work.

Kind regards, Rob Dielemans

Read only

Former Member
0 Likes
679

Hi,

There is extensive usage of LDB ( Logiacl data Bases)

Macros,Cluster Tables, Infotypes, records in Hr are date oriented every record will have begin date BEGDA and Enddate ENDDA.

Cluster Table are mainly used in Payroll, Time Management, Travel.

Regards,

Irfan

Note; If useful please reward points.

Read only

Former Member
0 Likes
679

Hi,

HR ABAP is slightly different from the application of ABAP in other applications. As Rich said usage of cluster tables and LDBs form the central focus of all. Apart from this there are specialized functions like MACROS, FEATURES, SCHEMAS, HRFORMS are found in HR. To understand the tehcnical applications in HR you`ll have to be good at usage of LDB Applications, ABAP Objects and INFOTYPES.

Reward points if helpful.

Regards

Read only

0 Likes
679

Pl check this <a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/4f/d5275f575e11d189270000e8322f96/frameset.htm">SAP Help</a>

~Suresh

Read only

Former Member
0 Likes
679

Hi Naveen,

Apart from all the difference the main thing you have to consider while coding is that two main fields in HR ABAP is PERNR and Date(BEGDA AND ENDDA).Based on the date(BEGDA AND ENDDA) even an employee's NAME itself can be changed.The whole career of the employee is based on the date((BEGDA AND ENDDA)like he might be a trainee at one point of time after that he might be promoted and it would continue upto his retirement).More care should be taken for Date while writing the code.