Skip to Content
0
Sep 11, 2014 at 08:58 AM

Populating the Owner(Employee) on the Activity Task

86 Views

Hi,

I have a requirement to code the After Modify event of Task Extended BO.

If the Category on the task has some specific value, then the Owner needs to change.

Below is the code I have put in the After Modify event:

var elActivityParty : elementsof Activity.Party;

if(this.GroupCode.content = "Z001")

{

elActivityParty.PartyName = "Sumeet Narang";

this.EmployeeResponsibleParty.Create(elActivityParty);

}

I am getting the error "Please enter a party with role Employee Responsible". However I am not able to change the PartyID as it is a read only field. What else needs to be done in this case?