Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to get Infotype 0025 Data(Appraisal Data)?

Former Member
0 Kudos

Hi,

I need to get all the appraisal data - IT0025 and extract to a local file. As we know, the appraisal data are not store in PA0025. Hence, what can I do to get all the appraisal data? I tried "BAPI_APPRAISAL_GETDETAIL" but is not working because it needs Appraisal ID, and my client just provide me the Appraisal Template. Here's the details:

Component Version: ECC 6.0

Infotype : 0025

Tab: Appraisals where Appraisees

Thanks in advance.

4 REPLIES 4

Former Member
0 Kudos

How about this Function Module: RHPA_APPRAISEES_APP_READ ?

You pass in an APPRAISEES table, and you get the APPRAISALS table which shows whatever you see on the 'Appraisals where APPRAISEES' tab in Infotype 0025.

PLVAR in APPRAISEES table is the plan version, OTYPE in APPRAISEES table is 'P' for PERNR, SOBID is the Personnel Number.

I have tried it in SE37, it works. But I haven't tried it within the program. But you could give it a try.

Former Member
0 Kudos

use this Fm to read the corresponding data -

RHPP_Q_PROFILE_READ

amit

Former Member
0 Kudos

Hi likim,

1. If we enter data from pa30 in infotype 25, then it gets stored in pa0025 table.

( i just tried it)

2. so we can directly pick from pa0025 table.

regards,

amit m.

Former Member
0 Kudos

Hi,

Thanks for the reply. However, I solved the problem by using FM -HRHAP_DOCUMENT_GET_LIST_XXL. Thanks.