cancel
Showing results for 
Search instead for 
Did you mean: 

Appraisal Tables

Former Member
0 Kudos

We have configure appraisal saystem and have created appraisals for few employees..and its status is completed.

we have Ojetive, Weighting,Final Result and Weighted Reuslt column.

we want to pick this data to show it on another customised infotype for some scenerio.

how can we get data from saved appraisal tables?.....is there any functional module for this?...or we have to pick it directly from table?

can any one plz tell...which table holds the appraisal data or which funtion module we can use to pick data from tables?

(i hv checked HRP* tables but no data there)

thanks if any one can help

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

i got its solution by my self

and i wana post it here...i know soooooo many consultant want to know it..as many hv questioned this on the forum....

here it is....

we have PERNR.....we want to know Appraisal_ID....after getting that Appraisal ID , we can select every thing about our appraisal by function module HRHAP_DOCUMENT_GET_DETAIL

Mr.Suresh Datti hv wrote this code on the forum to get appraisal_id by use of PERNR.

report zappee.

tables:hrhap_appee.

parameters: p_pernr type pernr_d.

select * from hrhap_appee

where id = p_pernr.

write:/ hrhap_appee-id,hrhap_appee-appraisal_id.

endselect.

Now we have Appraisal id ...we will pass it to our function module

HRHAP_DOCUMENT_GET_DETAIL

and will get all data of our appraisal,

Bestregards,, God Help those who help themself.

Former Member
0 Kudos

Hi Khalid,

I am also struggling with Appraisals. Can you help me out. How to test Appraisal workflow in SAP R/3.

My client is saying take four user id's of SAP R/3 show us the entire Appraisal Workflow.

In my client's place workflow is:

Appraisee->Appraiser->Reviewer->HR

Samriddhi