cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

We are happy to announce the new Windchill Customization board! Learn more.

Code for workflow to find document location in Windchill

TomazJeras
11-Garnet

Code for workflow to find document location in Windchill

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

1 ACCEPTED SOLUTION

Accepted Solutions

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();

View solution in original post

2 REPLIES 2

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

Top Tags