2011 May 04 12:03 PM
HI guys,
I have done a FM that makes a call transaction to pb30.
The call transaction is in mode A and i want to get the errors that are going on.
This way it works all the message types 'E' and 's' are populated in messtab, but when i change the mode to N only one message is filled in messtab.
Any idea?
Kind regards
Jon
2011 May 04 2:44 PM
Hi,
have you read this OSS Note?:
Note 198379 - Batch Input(BDC) for Transactions of Personnel Development
https://service.sap.com/sap/support/notes/198379
and this one?
Note 353939 - FAQ: Appraisals - Common questions and information
https://service.sap.com/sap/support/notes/353939
here it says:
16. Can I use Batch Input to create appraisals?
NO, have a look at OSS-note 0198379.
Alternative you can write a report containing the following function modules: Development class: PPAP
Function group: RHPS, RHPA
'RHPS_APP_SCHEME_READ' to read existing appraisal model
use table APPSCHEME to create the new appraisal and the relevant fields RATING and NOT_RATED
'RHPA_APPRAISAL_CREATE_CHECK' check whether the appraisal can be created or not
set parameter APP_ACTIVE = 'X'
'RHPA_APPRAISAL_CREATE' Create appraisal
Release 4.6C: 'RH_NOTE_TEXT_APPEND' and 'RH_NOTE_COMMIT' Use this function modules to create notes for appraisal elements. The usage can also be seen in function module RHPA_DYNNR_1300_NOTES_SAVE.
Use these three function modules to create your appraisals. If you want to Finish the appraisal directly after creating it you can add the function module 'RHPA_APPRAISAL_HISTORICIZE'.
Be aware that the appraisal model has to be created before starting the new report. Otherwise you will get an error calling the first function module RHPS_APP_SCHEME_READ.
Best regards.
2011 May 04 2:56 PM
Thanks Again Pablo your response has been very useful for me.
So i guess i will have to develop the functionality to create a new applicant in R3 or check if the bapi_applicant_create fullfills all my requirements.
Thank you very much.
Best regards
Jon