cancel
Showing results for 
Search instead for 
Did you mean: 

How to restrict maximum 5 part appraisers in the Appraisal template

Former Member
0 Kudos

Dear All

Our requirement is to allow maximum 5 part appraisers in the Appraisal template. Currently the System is calculating & restricting to only 2 part appraisers (as the total columns used is 16).

Even on using the BADI - Maximum Number of Part Appraisers (HRHAP00_MAX_P_APPER), we are not able to attach more than 2 part appraisers as the defaulted value is overriding the BADI value. This is because as per BADI - Maximum Number of Part Appraisers (HRHAP00_MAX_P_APPER) : The calculated number of part appraisers must always be greater than the desired number of part appraisers. If this is not the case, the system outputs an error message and resets the desired value.

Also the link http://help.sap.com/saphelp_rc10/helpdata/en/ae/ec6f01d143e141992f22fcf31a7aaa/content.htm says - "In the case of an approval process for a 360° degree feedback, you do not need to restrict the number of part appraisers. In all other part appraisal processes, the system restricts the maximum number of part appraisers". But even in 360° degree template, on selecting 16 columns the system is calculating & defaulting 2 part appraisers.

Kindly advice how to restrict the no. of part appraisers to 5 when the system is calculating only 2 part appraisers as we are using 16 columns in the Appraisal template.

Regards

Ravindra

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Thanks for your valuable inputs Siddharth.

Regards

Ravindra

siddharthrajora
Product and Topic Expert
Product and Topic Expert
0 Kudos

Get Maximum Number of Part Appraisers

Functionality

The method determines the calculated number of part apparaisers.

Result

The number of desired part appraisers is returned.

Notes

The calculated number of part appraisers must always be greater than the desired number of part appraisers. If this is not the case, the system outputs an error message and resets the desired value.

Parameters

FLT_VAL (Import) Parameter FLT_VAL of Method MAXIMUM_NUMBER_GET

CALCULATED_NUMBER (Import) Calculated Number of Part Appraisers

MAXIMUM_NUMBER (Export) Number of Part Appraisers (set by implementation)

see the note 530913 that ie no of appraisers are stuck at 17

ELSE.

no_of_part_appraisers = ( c_column_max_number - l_total_columns )

DIV l_part_columns.

ENDIF.