/**
  * This Method returns the WrkOrdrDets Object for the passed in WorkOrderDetail Id (Product Key)
  *
  * @param wodId - WorkOrder Detail Id(Product Key) Primary Key of WRK_ORDR_DETS table
  * @return WrkOrdrDets - WorkOrder Detail Objects for the passed wodId
  */
 public WrkOrdrDets getProductInfo(long wodId) throws RemoteException {
   WrkOrdrDets wrkordrdts_obj = new WrkOrdrDets(conn);
   return wrkordrdts_obj.searchWrkOrdrDets(wodId);
 }