To work in CRM 2011 Workflow, there must be only one owner side

I created one system workflow in CRM 2011 to assign a report to a team to create activity, as shown in the figure below.

enter image description here

When a workflow is triggered, it does not assign an entry to the command; instead, it gives an "Invalid argument" error . In the error details, the error message: "For activity" there should be only one owner side ", as shown in the figure below.

enter image description here

How to solve this problem..? How can we assign a record to a team.?

+3
source share
2 answers

, . , :

select subject
                , RegardingObjectIdName
                , statecodename
                , owneridname
                , Activitytypecodename
                , CreatedOn
from filteredactivitypointer ap
where not exists(select *
                      from filteredactivityparty ay
                      where ap.activityid=ay.activityid
                       and ay.participationtypemaskname = 'Owner')

, , . , .

, , - , Activity Owner.

select subject
                , RegardingObjectIdName
                , statecodename
                , owneridname
                , Activitytypecodename
                , CreatedOn
from filteredactivitypointer ap
where (select COUNT(1)
                      from filteredactivityparty ay
                      where ap.activityid=ay.activityid
                       and ay.participationtypemaskname = 'Owner') > 1

( , ).

: http://social.microsoft.com/Forums/en-US/6f67ffaa-7162-4030-b2ee-af23af6b4cf5/error-when-assigning-certain-record-in-crm-error-there-should-be-only-one-owner-party-for-an?forum=crm, CRM 4.0, 2011 .

0

, - , WF , - , .

, , ?

, .

, Workflow, 1 , - . .:)

,

-1

All Articles