1-Visitor
April 15, 2019
Solved
API to get Part Configuration from part ?
- April 15, 2019
- 1 reply
- 2327 views
You can use the following snippet to achieve your requirement,
QueryResult qr = ConfigurationHelper.service.getAllConfigurations(WTPart.getMaster());
if (qr != null) {
while (qr.hasMoreElements()) {
WTProductConfiguration config = (WTProductConfiguration) qr.nextElement();
}
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.