0 votes
3.2k views
in Integrations by

2 Answers

+1 vote
by
 
Best answer

This is a implementation of the email notification with timer event pattern, a timer event is attached to the Process Task and in the post of the timer event the current task id is passed to the email sending service as follows

tw.local.taskID = tw.system.step.task.id

then the taskID is passed to the Email Sender service which constructs the task launch URL as follows

tw.local.messageText += "http://" + tw.env.serverhostname +  ":" + tw.env.serverport + "/teamworks/process.lsw?zWorkflowState=1&zTaskId=" + tw.local.taskID; 

A sample twx for 8.5.5 is attached here https://bpm.tips/?qa=blob&qa_blobid=16093317356553935009

+2 votes
by
It is a good practice to have the task URL in the custom email notifications, custom email notifications are generally sent using attached timer events which are not repeatable and start after task is created/assigned

The URL patters is

http://{serverhostname}:{server port}/teamworks/process.lsw?zWorkflowState=1&zTaskId=xxxx  

To get the task id from the task you can use the following call in the post assignment of the timer event since the timer is attached to the task the current step is the task

tw.local.taskID  = tw.system.step.task.id
by (110 points)
Is there a way to pass input variable values with this task URL format?
by (21.5k points)

input variables can be suffixed in the following syntax

&tw.local.bpdName=Approval&tw.local.launch=false&tw.local.snapshotName=0.0.1&tw.local.assignTo=ghamm

I had to dig it out of old lombardi wiki site dumps, glad you asked and this can be recorded for future developers

Related questions

0 votes
1 answer 598 views
0 votes
1 answer 833 views
0 votes
1 answer 404 views
0 votes
0 answers 212 views
0 votes
0 answers 257 views
0 votes
0 answers 180 views
0 votes
1 answer 927 views
0 votes
0 answers 746 views
0 votes
0 answers 421 views
0 votes
1 answer 409 views
0 votes
2 answers 2.7k views
0 votes
1 answer 1.2k views
0 votes
1 answer 625 views
0 votes
1 answer 484 views

634 questions

495 answers

97 comments

2.7k users

Join BPM Community Discord Channel

Welcome to BPM Tips Q&A, Community wiki/forum where you can ask questions and receive answers from other IBM BPM experts and members of the community. Users with 2000 points will automatically be promoted to expert level.
Created by Dosvak LLC
Our Youtube Channel
...