Skip to main content
12-Amethyst
December 21, 2015
Solved

Code for workflow to find document location in Windchill

  • December 21, 2015
  • 2 replies
  • 1793 views

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

Best answer by RandyJones

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

2 replies

20-Turquoise
December 21, 2015

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

12-Amethyst
December 22, 2015

Hi Randy,

thanks a lot for your help.

That's the method I was looking for.

Tomaz