10-16-2009 01:51 PM
<event type="node-leave">
<script>
<variable name="bpm_workflowDescription" access="read,write" />
<variable name="chk_EAdescription" access="read,write" />
<variable name="chk_EApriority" access="read,write" />
<variable name="chk_Deadline" access="read,write" />
<variable name="chk_EAname" access="read" />
<variable name="bpm_workflowPriority" access="read"></variable>
<variable name="bpm_description" access="read"></variable>
<variable name="bpm_workflowDuedate" access="read"></variable>
<expression>
bpm_workflowDescription = chk_EAname;
if (bpm_workflowPriority != void) chk_EApriority = bpm_workflowPriority;
System.out.println("bpm_workflowDescription =" + bpm_workflowDescription);
System.out.println("bpm_description =" + bpm_description);
System.out.println("bpm_workflowDuedate =" + bpm_workflowDuedate);
System.out.println("bpm_workflowPriority =" + bpm_workflowPriority);
System.out.println("Token =" + token.comments.get(0).getMessage());
System.out.println("Workflowpriority =" + bpm_workflowPriority);
if (bpm_description != void) chk_EAdescription = bpm_description;
System.out.println("chk_EAdescription =" + chk_EAdescription);
if (bpm_workflowDuedate != void) chk_Deadline = bpm_workflowDuedate;
System.out.println("bpm_workflowDuedate =" + bpm_workflowDuedate);
System.out.println("chk_Deadline =" + chk_Deadline);
</expression>
</script></event>
10-19-2009 03:47 AM
10-19-2009 04:21 AM
10-23-2009 05:26 PM
<start-state name="Auftrag erfassen">
<task name="chkwf:enterEAdata" >
<event type="task-end">
<script>
System.out.println("========================================================");
System.out.println("=============== task-end ===================");
System.out.println("========================================================");
if (bpm_workflowPriority != void) {
chkwf_EApriority = bpm_workflowPriority;
System.out.println("bpm_workflowPriority: " + bpm_workflowPriority);
}
if (taskInstance.description != void) {
bpm_description = taskInstance.description ;
System.out.println("taskInstance.description : " + taskInstance.description );
}
if (bpm_description != void) {
chkwf_EAdescription = bpm_description;
System.out.println("bpm_description: " + bpm_description);
}
if (bpm_workflowDuedate != void) {
chkwf_Deadline = bpm_workflowDueDate;
System.out.println("bpm_workflowDuedate: " + bpm_workflowDuedate);
} </script>
</event>
</task>
<event type="node-leave">
<script>
System.out.println("========================================================");
System.out.println("=============== node-leave ===================");
System.out.println("========================================================");
if (bpm_workflowPriority != void) {
chkwf_EApriority = bpm_workflowPriority;
bpm_priority = bpm_workflowPriority;
System.out.println("bpm_workflowPriority: " + bpm_workflowPriority);
}
if (bpm_description != void) {
chkwf_EAdescription = bpm_description;
System.out.println("bpm_description: " + bpm_description);
}
if (bpm_workflowDuedate != void) {
chkwf_Deadline = bpm_workflowDueDate;
System.out.println("bpm_workflowDuedate: " + bpm_workflowDuedate);
}
</script></event>
<transition to="gogogo" name="toGoGoGo"></transition>
</start-state>
========================================================
=============== task-end ===================
========================================================
taskInstance.description : Anfrage mit EA-Nr und EA-Namen erfassen
bpm_description: Anfrage mit EA-Nr und EA-Namen erfassen
========================================================
===============node-leave ===================
========================================================
bpm_workflowPriority: 1
10-26-2009 04:23 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.