cancel
Showing results for 
Search instead for 
Did you mean: 

WFM Core change is not supported for business partner

Former Member
0 Kudos

Hi,

Whenever I try to Execute the transaction PRP_WFM_ADMIN to mainitain the data for business partner in Work froce maangement core

it is throwing fallowing messgae:

FM Core change is not supported for business partner 506

Message no. PRP077

iagnosis

Business partner 506 ist not relevant for WFM Core, as determined by the

PRP_BUPA_WFM_SCOPE BAdI.

please help me.

thanks in advance

sunil

Accepted Solutions (0)

Answers (3)

Answers (3)

bjoern_panter
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi guys,

please go to the transaction BP for business partner maintenance and check out if the BP is a resource or an employee. Only in this case the BP is relevant for WFM core.

Check out oss notes 537844 and 772153

here the coding extract


* For WFM Core - only interested in Resources and non-HCM Employees
***note 772153 - begin - original logic was too permissive for employees with role resource
  if iv_hr_ale_is_active = 'X'.
    if iv_has_resource_role = 'X' and not iv_has_employee_role  = 'X'.
      ev_is_wfm_core_relevant = 'X'.
    endif.
  else.
    if iv_has_resource_role = 'X' or iv_has_employee_role  = 'X'.
      ev_is_wfm_core_relevant = 'X'.
    endif.
  endif.

Former Member
0 Kudos

Thnaks badri,

your amswer is helping me in solving my issue,any further searches regarding this topic please revert

thanks again

sunil

Former Member
0 Kudos

Hi Sunil,

As I understand from your message its checking some where for a Business partner 506 which seems to have been defined in the WFM.

Try also to check in the BADI where the check is happening and what the value its expecting

Cheers

Badri