Skip to main content
1-Visitor
September 18, 2014
Solved

How to get Resultant Part from Part Request object using Windchill API

  • September 18, 2014
  • 2 replies
  • 1472 views

Hi,

From Windchill Javadoc I could not find API for getting Resultant Part from the Part Request object (This is part of suma module).

Windchill version is 10.2

Really grateful if somebody provide the API for this.

Thanks & Regards,

Suresh Babu

Best answer by sad

Finally I got the answer. The API is given below.

ObjectReference object_reference = part_request.getResultingPartMasterReference();

WTPartMaster resultant_part_master = (WTPartMaster)object_reference.getObject();

With Thanks

Suresh Babu

2 replies

sad1-VisitorAuthor
1-Visitor
September 22, 2014

Still I could not find the javacode for getting Resultant Part from the Part Request.

Please help me.

Thanks in Advance.

Suresh Babu

sad1-VisitorAuthorAnswer
1-Visitor
September 22, 2014

Finally I got the answer. The API is given below.

ObjectReference object_reference = part_request.getResultingPartMasterReference();

WTPartMaster resultant_part_master = (WTPartMaster)object_reference.getObject();

With Thanks

Suresh Babu