cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

HCM Process & Forms Update Custom Infotype

Former Member
0 Likes
1,094

Hi All,

Is there any way to update custom infotype in HCM Forms. I am working on Create Position form where i need to update some custom infotypes. The standard service SAP_PD is updating only standard infotypes. Is it possible to update by implementing the basic BADI : HRASR00GEN_SERVICE_BASIC or Do i have to implement HRASR00GEN_SERVICE_ADVANCED.

I have seen a method called FLUSH in HRASR00GEN_SERVICE_ADVANCED but i dont know how to call the method.

Any input on this is highly appreciated.

Thanks

VJ

View Entire Topic
nathan_pierce
Discoverer
0 Likes

I work with Kristene, and I'll just follow up a bit on what she posted. We are NOT updating anything in the DO_OPERATIONS method. What she is showing us doing in DO_OPERATIONS with the code snippets she provided is loading global class attributes (g_pernr, pa9004 etc) in that operation from the values in the SERVICE_DATASETS parameter since that table is not a parameter in the FLUSH method. We do all of our updating in the FLUSH method, we use the global class attributes to store the data that we need to use there.

Yes you do have to implement HRASR00GEN_SERVICE_ADVANCED and use its FLUSH method.