새로운 기능 > Windchill > 11.0 F000 > 배포 및 구성 > 워크플로: 임무 완료 변환
  
워크플로: 임무 완료 변환
제품: Windchill
릴리즈: 11.0 F000
이점
새 변환 유형은 임무 완료 시 표현식을 호출합니다. 이렇게 하면 워크플로 템플릿 관리자가 별도 동기화 로봇을 사용하지 않고 첫 번째 거부 시 임무를 완료할 수 있습니다.
추가 정보
임무 완료 변환은 워크플로 템플릿 편집기의 변환 탭에서 사용할 수 있습니다.
변환 표현식이 true이면 활동 노드와 연관된 개별 임무가 완료됩니다.
새 API는 개별 역할별 투표 집계를 지원합니다.

/*
* @param self : WfAssignedActivity ObjectReference
* @param eventToMatch : Routing option to tally
* @param assigneeRole : Role for which you want to tallythe routing option
* @param locale : The locale in which you have specifiedthe assignee role
* @return int : Number of votes from user in the specified role
* @throws WTException
*/
public static int count(ObjectReference self,String eventToMatch,String assigneeRole,Locale locale)
throws WTException
새 API는 라우팅 이벤트별 투표 집계를 지원합니다.

/*
* @param self : WfAssignedActivity ObjectReference
* @param eventToMatch : Routing option to tally
* @param int : Number of votes for the routing event in
the activity
* @throws WTException
*/
public static int count(ObjectReference self,String eventToMatch) throws WTException
새 API는 조건 충족 시 활동 완료를 지원합니다.

/*
Supported API : True
Method to complete the activity
* @param self : WfAssignedActivity ObjectReference
* @param events : Routing event to follow
* @throws WTException
*/
public void completeActivity
(ObjectReference self,String events)
throws WTException
자세한 내용은 변환 탭임무 완료 변환을 참조하십시오.