public static void deleteProductEntry(long productEntryId) throws RemoteException {
    try {
      SCProductEntryServiceUtil.deleteProductEntry(productEntryId);
    } catch (Exception e) {
      _log.error(e, e);

      throw new RemoteException(e.getMessage());
    }
  }
  protected void deleteProductEntry(ActionRequest actionRequest) throws Exception {

    long productEntryId = ParamUtil.getLong(actionRequest, "productEntryId");

    SCProductEntryServiceUtil.deleteProductEntry(productEntryId);
  }