Skip to main content
1-Visitor
October 24, 2017
Question

How can we fetch Change Notice information like we do it for Parts in Thingworx?

  • October 24, 2017
  • 2 replies
  • 2516 views

How can we fetch Change Notice information like we do it for Parts in Thingworx?

I am trying to get Change Notice information from the number as we do for part. Is there any way we can do it?

2 replies

5-Regular Member
October 25, 2017

Vatsal Khole​: Could you please clarify or provide more details on your request. Is it something related to ThingWorx & Navigate/Windchill ?

If possible please provide screenshots to better understand the request.

-Durgesh

vkhole-21-VisitorAuthor
1-Visitor
October 26, 2017

Durgesh Patel​: We are trying to write a service in thingworx, where the input would be the cn number and in output we would like to get the attribute information and the resulting item information. The cn would be in Windchill.

1-Visitor
October 25, 2017

Call the "query" service on the WindchillConnector and implement your params similar to this:

var params = {

containerUfid: obid /* STRING */,

criteria: "name=*" + searchParam + "* | number=*" + searchParam +"*" /* STRING */,

type: "wt.change2.WTChangeOrder2" /* STRING */,

dataShape: "ptc-demo.wt.change2.WTChangeIssue" /* DATASHAPENAME */

};

vkhole-21-VisitorAuthor
1-Visitor
October 26, 2017

Wayne Posner: Thanks for the input. But we are not able to get this running. Is there any example which you can share.