Community Tip - Want the oppurtunity to discuss enhancements to PTC products? Join a working group! X
Hi,
I need some guidance for workflow code to get name of the Product, where EPM or WT Document is located.
I need to include document location (Product name) as Promotion task notification email subject. I know how to customize task notification email template, but I also need document location.
Thanks in advance.
Tomaz
Solved! Go to Solution.
Tomaz Jeras wrote:
Hi,
I need some guidance for workflow code to get name of the Product, where EPM or WT Document is located.
You can use the getContainerName() method. ie
wt.epm.EPMDocument epmDoc = <previously defined>
String epmDocContainer = epmDoc.getContainerName();
wt.doc.WTDocument wtDoc = <previously defined>
String wtDocContainer = wtDoc.getContainerName();
Tomaz Jeras wrote:
Hi,
I need some guidance for workflow code to get name of the Product, where EPM or WT Document is located.
You can use the getContainerName() method. ie
wt.epm.EPMDocument epmDoc = <previously defined>
String epmDocContainer = epmDoc.getContainerName();
wt.doc.WTDocument wtDoc = <previously defined>
String wtDocContainer = wtDoc.getContainerName();
Hi Randy,
thanks a lot for your help.
That's the method I was looking for.
Tomaz