Solved
How to display the all users of the Windchill (Means All user names)
Hi Freinds,
How to display the all users of the Windchill (Means All user names).Can you suggest any api ?
Regards,
Sandeep
Hi Freinds,
How to display the all users of the Windchill (Means All user names).Can you suggest any api ?
Regards,
Sandeep
List<WTUser> resultList = new java.util.LinkedList();
QuerySpec querySpec = new QuerySpec(WTUser.class);
QueryResult queryResult = PersistenceHelper.manager.find(querySpec);
while (queryResult.hasMoreElements())
{
resultList.add((WTUser) queryResult.nextElement());
}
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.