Skip to main content
1-Visitor
July 11, 2016
Solved

WTPart creation utility on Context (Product/Library) Level?

  • July 11, 2016
  • 1 reply
  • 1637 views

We are planning to create the WTPart for our existing data.

 

I can see we can limit this utility run at folder level but which may be more time consuming process on our side as we have multiple folders. Is there any way to run this utility for specific context or at-least all sub-folders within that context?

 

Also how to link or update attribute values from EPMDocument to WTPart?

If available please share the documents for Best practices during creation of WTPart.

 

Thanks in Advance.

 

Regards,
Devidas

Best answer by RandyJones

Devidas Pawar wrote:

We are planning to create the WTPart for our existing data.

I can see we can limit this utility run at folder level but which may be more time consuming process on our side as we have multiple folders. Is there any way to run this utility for specific context or at-least all sub-folders within that context?

.

.

.

You can specify an entire Library like this:

   <FolderCriteria ConditionJoin="Or">
      <FolderCondition Operator="equal" Value="/Default" Context="/wt.inf.container.OrgContainer=Your Organization Name Here/wt.inf.library.WTLibrary=Name of Library Here"/>
   </FolderCriteria>

You can specify an entire Product like this:

   <FolderCriteria ConditionJoin="Or">
      <FolderCondition Operator="equal" Value="/Default" Context="/wt.inf.container.OrgContainer=Your Organization Name Here/wt.pdmlink.PDMLinkProduct=Name of Product Here"/>
   </FolderCriteria>

An article on PTC's web site dealing with running the part creator utility:
https://support.ptc.com/appserver/cs/view/solution.jsp?n=CS41163

And PTC's "Using the Part Creation Utility" guide:

http://support.ptc.com/cs/help/windchill_hc/wc110_hc/WCPartCreationTool_UsePCUTitleIntro.html?queryId=155df55859d

1 reply

20-Turquoise
July 12, 2016

Devidas Pawar wrote:

We are planning to create the WTPart for our existing data.

I can see we can limit this utility run at folder level but which may be more time consuming process on our side as we have multiple folders. Is there any way to run this utility for specific context or at-least all sub-folders within that context?

.

.

.

You can specify an entire Library like this:

   <FolderCriteria ConditionJoin="Or">
      <FolderCondition Operator="equal" Value="/Default" Context="/wt.inf.container.OrgContainer=Your Organization Name Here/wt.inf.library.WTLibrary=Name of Library Here"/>
   </FolderCriteria>

You can specify an entire Product like this:

   <FolderCriteria ConditionJoin="Or">
      <FolderCondition Operator="equal" Value="/Default" Context="/wt.inf.container.OrgContainer=Your Organization Name Here/wt.pdmlink.PDMLinkProduct=Name of Product Here"/>
   </FolderCriteria>

An article on PTC's web site dealing with running the part creator utility:
https://support.ptc.com/appserver/cs/view/solution.jsp?n=CS41163

And PTC's "Using the Part Creation Utility" guide:

http://support.ptc.com/cs/help/windchill_hc/wc110_hc/WCPartCreationTool_UsePCUTitleIntro.html?queryId=155df55859d

Devidas1-VisitorAuthor
1-Visitor
July 13, 2016

Thank you Randy Jones.