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: 

call transaction problem

Former Member
0 Kudos
167

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

2 REPLIES 2

former_member182371
Active Contributor
0 Kudos
121

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.

0 Kudos
121

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