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 600 views
0 votes
1 answer 834 views
0 votes
1 answer 405 views
0 votes
0 answers 213 views
0 votes
0 answers 258 views
0 votes
0 answers 183 views
0 votes
1 answer 930 views
0 votes
0 answers 750 views
0 votes
0 answers 423 views
0 votes
1 answer 410 views
0 votes
2 answers 2.7k views
0 votes
1 answer 1.2k views
0 votes
1 answer 628 views
0 votes
1 answer 491 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
...