Human Capital Management Blogs by Members
Gain valuable knowledge and tips on SAP SuccessFactors HCM suite and human capital management market from member blog posts. Share your insights with a post of your own.
cancel
Showing results for 
Search instead for 
Did you mean: 
JoseJW
Participant
Point to Point integration (P2P) has made  the replication of master data from EC to ECPY system very easy.

My blog post here would provide the details necessary to replicate a custom MDF object in Employee Central (EC) to ECPY system using the standard P2P framework. SAP documentation and notes does provide you with a few hints on how to achieve this replication. I would cover the relevant SAP notes and  documentation along with the missing details  to achieve such a replication as part of my blog post below.

The replication process will  require the involvement of ABAP consultant as a BADI has to be implemented wherein data has to be parsed.

Pre-Requisites :



  • Ensure that the custom MDF that is created in EC has the externalCode mentioned as ‘User’ .

  • The API Visibility of the custom MDF object is set to ‘Editable’

  • Include the MDF object in ‘Compound Employee API Object Types’ via Manage Data option

  • In ECPY system  , you will have to include the custom MDF object as a Segment in the customizing node for Configuring Compound Employee API query.


The details about the above points are mentioned clearly in note 2597777 - How to add custom MDF entities in the SFAPI CompoundEmployee.

You can find the details about ECPY configuration in the standard ECPY help documentation. Employee Central Payroll using Point-to-Point Integration àOverview of Master Data integration->defining Customer Specific activitiesàMapping Options->ExtensibilityàAdvanced ExtensibilityàReplication of custom MDF objects



It is also possible to replicate a custom MDF object  which has a parent-child relationship. You have to ensure that you include the parent object as part of the replication and not the child object.

Parsing CUSTOM MDF data in ECPY


After the necessary pre-requisites have been performed as above, we will have to implement a BADI  to parse the data from the custom MDF object and then populate the necessary infotypes or tables in ECPY system.

The standard replication program (transaction HRSFEC_PTP_EE_REPL) performs the hard job of making a compound API call to EC system, does XML transformation and updates the XML provider class.

We just have to parse the custom MDF data that is already available as part of the XML provider class.

The note -2679852 - PTP - How to parse a custom MDF object for employee master data to ECP  gives you a fair idea on how to  do the parsing.

However, the sample classes CL_HRSFEC_EX_PROC_EE_2 or the BADI that it points to -HRSFEC_B_PROCESS_EMPLOYEE isn’t used in P2P framework.

In P2P framework, the BADI that is called is HRSFEC_B_CE_PROCESS_EMPLOYEE and the sample class that has to be referred is CL_HRSFEC_EX_PROC_EE_<1 or 2 or 3)_CE  .

When you create an implementation, you can mention the implementation class to be created as a copy of  one of the above classes.

On further analysis, we  found that HRSFEC_B_PROCESS_EMPLOYEE is used in EC to on premise payroll system replication as it is called in the class CL_HRSFEC_EE_MDR_IMPL.

Whereas HRSFEC_B_CE_PROCESS_EMPLOYEE is called in the P2P framework as part of the class CL_HRSFEC_EE_MDR_MAIN

Coming back to implementing the logic to parse the custom MDF data, all the entities are referred as an child to the Employment  Id. You just have to iterate through every child entities-> identify the custom MDF entity and then query through all the fields of the custom MDF object.  The below screenshot are references from the sample classes.









The information obtained from custom MDF object can be used to update a standard/custom infotype in the ECPY system.

The sample classes provide a good idea on how the child entities have to be queried from the XML provider classes.

The P2P framework provides you with some useful static methods like cl_hrsfec_service_lib=>update_mass_pnnnn_data which can be used to update the infotype as well.

Use Case


For one of the customer , we had a requirement  wherein a loan is requested by an employee and then  the same amount is recovered in equal installments. For a few cases, interest also has to levied on the loan along with preclosure, changing of installment amounts ,etc has to be provided.

EC does provide with Advances feature , but it is very limited and cannot handle all the requirements above.

The loan functionality (IT0045) in ECPY system will cater to all the requirements and hence we decided to leverage on IT0045 .

We created a custom MDF object  in EC  which would be used by the employee  to raise request for a loan. It would contain fields like eligible amount, amount requested, installment amount,etc.,

Once the employee raises the request, it would be routed to through various levels of approval.

Once approved,  the standard replication program  would get the details of the custom MDF object and create IT0045 in ECPY system.

In the BADI HRSFEC_B_CE_PROCESS_EMPLOYEE  implementation, we wrote the code to parse the data from custom MDF object  by taking the sample class code as a reference. This data was used to populate the necessary structure of IT0045 and then the logic for updating IT0045 was called.

The custom MDF object we used had parent-child association as well. This will just introduce a nested child entity in the XMl provider. Once you are able to parse one of the child object, parsing a nested child object wont be an issue.

Hint: Updating the Loans infotype is a little tricky because IT0078 also has to be updated. So kindly note that SET_P0078_DATA of  CL_HRPA_IT0045_CONTAINER  has to be called so that IT0078 is also updated successfully.

The IT0045 record that has been created can be exposed as mashup screen in the employee profile accessible by the administrator. Other subsequent changes to the existing loan record can  be  done by the admin directly via the mashup screen by the administrator.

With the above information and with help of a ABAP consultant, it would be possible to replicate any custom MDF object from EC to ECPY .

As major goal of cloud implementation is to avoid major development in EPCY  system, it is upto the consultant to take a call on proceeding further with such replication as it involved certain development effort.

Kindly feel free to post your views or feedback on the approach above.

 
13 Comments
0 Kudos
Hi Jose,

It's a nice write-up and very informative. Thank you for posting.

 
charlesjose
Explorer
0 Kudos

Makes for a nice read.

This gives end-to-end coverage of a requirement relevant to most EC and ECPY implementations.

Since it deals with the topic in a simplified manner, clarifying variations, it helps in achieving the integration easily.

Muthu
Explorer
0 Kudos
Nice Jose looks very Good integration, we need to include ABAP consultants in the development part.
former_member24324
Participant
0 Kudos
Great job on this Jose! Putting this in my EC newsletter for this week.
former_member242570
Discoverer
0 Kudos
Informative. Good work Jose!
SreelathaN
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi Jose,

Thanks for sharing.  The same logic we can use with SAP HCM PY as well with On-premises.
JoseJW
Participant
0 Kudos
Hi Sreelatha,

 

Yes. As mentioned in the blog , the BADi applicable for on premise would be HRSFEC_B_PROCESS_EMPLOYEE. You can refer to the note 2679852 for details.
0 Kudos
Hi Jose,

I used the method cl_hrsfec_service_lib=>update_mass_pnnnn_data to update an infotype. I do not get any errors in the application log when I run the replication program but the data is not getting stored in the database table of the infotype. Can you kindly elaborate on the updating logic?

Thanks
krishnaz
Explorer
0 Kudos
Hi Wilson,

I used the method cl_hrsfec_service_lib=>update_mass_pnnnn_data to update an infotype and also used SET_P0078_DATA of  CL_HRPA_IT0045_CONTAINER but still data is not updated in IT-78

 

Can you please help !!.

Thanks!

Sai Krishna.
JoseJW
Participant
0 Kudos
Hi,

Can you post your piece of code to update 45 and 78?

That would help in troubleshooting the issue.

Thank you,

Jose
0 Kudos
Hi Jose

I am trying to replicate some custom fields for external employees to ECP. Since this is my first implementation , I wanted  to check with you if this is possible.
JoseJW
Participant
Hi Sulagna,

It is definitely possible to push custom fields in EC to the appropriate infotype fields.

You can either use the Extensibility option in the spro node or the BADIs.

There are enough BADIs available in replication framework wherein you can put your necessary code if you want to manipulate the incoming data before updating in infotypes.

 

Thank you,

Jose
S0019221682
Discoverer
0 Kudos
i have scenario to replicate info type 45 with custom mdf

i have implemented the badi HRSFEC_B_CE_PROCESS_EMPLOYEE in ECP

i need to know how to extract incoming loan data ?
Labels in this area