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.

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

sad
3-Visitor
3-Visitor

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

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

1 ACCEPTED SOLUTION

Accepted Solutions
sad
3-Visitor
3-Visitor
(To: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

View solution in original post

2 REPLIES 2
sad
3-Visitor
3-Visitor
(To:sad)

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

Please help me.

Thanks in Advance.

Suresh Babu

sad
3-Visitor
3-Visitor
(To: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

Top Tags