tags:

views:

119

answers:

2

Hi,

I'm shortly to start on an integration project that will require organisational data (line reporting etc) and starter/leaver events etc. We utilise SAP HCM, but I have no experience of SAP (BizTalk/.NET developer), and I'm still attempting to find the right people to talk to in our organisation about how to interface with SAP.

Sadly (for our organisation anyway!), Stack Overflow is normally quicker :)

So, really I'm looking for an answer to the following;

  1. Does SAP HCM expose master employee data "out of the box" via web services. If not, does it require much to expose this on the SAP side?
  2. If data is exposed, is it via a pull only model? ie, can SAP be configured to push events?
  3. This may be naive, but does a trial version of the SAP stack exist to allow me to explore the options?

Any suggestions would be gratefully received. I know in the past the organisation has had to engage SAP consultants for integration work like this, but (in my naive world I guess) this seems a reasonably simple integration problem?

Regards, Jason

+2  A: 

I'm not familiar with the HCM module specifically, but I can provide some general answers:

  1. Generally, standard display functionality of the major business objects (like a User or a Job in the HR world) are exposeed via BAPIs. Assuming your Basis team has ICF (Internet Communication Framework) configured, it is pretty simple to expose a BAPI as a web service.

  2. SAP can push data based on events happening in SAP. For example, you could have SAP call a web service in your legacy application whenever a new employee record is created in SAP.

  3. According to this post there is no trial version of HCM. However, here's a few things that might be useful. I haven't used them personally but they look to be worth trying out:

BenV
I've been told by our SAP guy that exposing even simple employee data requires development. Having spent some time reading http://amzn.to/9gd7eR I'm sure this isn't the case. I've downloaded Netweaver and will explorer some more! Thanks for the links
Jason Hyland
+2  A: 

Hello

Does SAP HCM expose master employee data "out of the box" via web services. If not, does it require much to expose this on the SAP side?

There are very few web service for HR. However, an ABAP function or BAPI can be transformed into a web service using a menu option... if such a function does not exist then it should be simple to create on (a pull solution)

can SAP be configured to push events?

Yes, by several mean. HR operations modifictaion of master data, or administrative operation can generate event that can do anything (update a table, or call a web service)

This may be naive, but does a trial > version of the SAP stack exist to allow me to explore the options?

There a a trial stack version available on sdn.sap.com, but this contains only the core, and no specific module like HCM.

Regards
Guillaume

Additionnal Infos :

you can easily get informations on an existing user using standards RFC function, such as BAPI_EMPLOYEE_GETDATA (to get a list of employee from several criteria), or BAPI_BANKDETAIL_GETDETAIL for bank detail. You "just" have to create a wrapper call in your dev. langage

However, this will not give you "events" such as a modification of those bank details, the hiring of a new employee or the firing of a (previous) employee... For this you have to do non-trivial developpement (the simplest : any modification of a master data put the employee id in a table... each day you check the table and import the data currently valid)

Regards

PATRY
Thanks for the details - shame there is no HCM eval/trial
Jason Hyland