Sunday, March 7, 2010

HR SAP Function Module to get Employee Details from User ID

HR_GETEMPLOYEEDATA_FROMUSER - Input for this function Module is User ID.

Wednesday, January 27, 2010

SAP Function Module Relating to HR Apprisal

Function Module Name - HRHAP_DOCUMENT_GET_DETAIL
EG:
data: lv_APPRAISAL_ID type HAP_S_APPRAISAL_ID,
lit_BODY_CELLS type HAP_T_BODY_CELLS,
lwa_BODY_CELLS type HAP_S_BODY_CELLS.

lv_APPRAISAL_ID-APPRAISAL_ID = appraisal_id.

CALL FUNCTION 'HRHAP_DOCUMENT_GET_DETAIL'
EXPORTING
plan_version = '01'
s_appraisal_id = lv_APPRAISAL_ID
IMPORTING
T_BODY_CELLS = lit_BODY_CELLS.

Monday, January 25, 2010

Function Module to Update Infotype

Function Module Name is - HR_INFOTYPE_OPERATION
Check standard Program - RPUPBSQ4_DYNUPDT

Wednesday, January 13, 2010

Get Infotype 8 Value ( Direct and Indirect Evaluation )

Function Module Name - RP_FILL_WAGE_TYPE_TABLE
Pass the Begin Date, End date and Employee Number.

Monday, January 4, 2010

Transport Request Table

The table where all Transport request and tasks are saved is - E070

Tuesday, November 17, 2009

List of all SAP Workflows

We will get all Workflow details from table - HRSOBJECT

Tuesday, November 10, 2009

Function module to split a string

RKD_WORD_WRAP - I have used it today, the requirement was to split one string of length 255 into 3 and move it to an internal table, I tried lot of other ways, finally one of my vfriend told me about this function module, its so simple, just pass the string and length in which you want to split, and take internal table as output, that table will have the required values, it's so simple.