java.lang.Objectcom.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
com.ibm.commerce.inventory.objects.OrderItemShippingHistoryAccessBean
Each row contains information about inventory that has been released for fulfillment of an OrderItem. This access bean corresponds to the database table 'ORDSHIPHST'.
Constructor Summary | |
OrderItemShippingHistoryAccessBean() Zero argument constructor used to initialize the access bean. |
|
OrderItemShippingHistoryAccessBean(javax.ejb.EJBObject o) constructor |
|
OrderItemShippingHistoryAccessBean(java.lang.Long newOrderItemsId, java.lang.Long newVersionSpcId, java.lang.Integer newOrdShipHstNum, java.lang.Integer newQtyReturned) Maps to a corresponding ejbCreate method in the home interface of the EJB |
Method Summary | |
void | commitCopyHelper() Update(flush) data to the EJBObject (persistent storage). |
protected java.lang.String | defaultJNDIName() |
java.util.Enumeration | findByOrderItemsId(java.lang.Long aOrderItemsId)
Retrieves the information about inventory that has been released for fulfillment with the specified ORDERITEMS_ID
The SQL query used to fetch the requested row from the ORDSHIPHST table is: SELECT * FROM ORDSHIPHST T1 WHERE T1.ORDERITEMS_ID = ? |
java.util.Enumeration | findNonTrackedInventoryByOrderItemsId(java.lang.Long argOrderItemId)
Retrieves the information about inventory that has been released for fulfillment with the specified Receipt_Id and OrderItems_id
The SQL query used to fetch the requested row from the ORDSHIPHST table is: SELECT * FROM ORDSHIPHST T1 WHERE T1.Receipt_Id is null and T1.OrderItems_id =? |
java.lang.String | getDateShipped() This method provides access to the ORDSHIPHST.DATESHIPPED column of DB2 type TIMESTAMP. |
java.sql.Timestamp | getDateShippedInEJBType() This method provides access to the ORDSHIPHST.DATESHIPPED column of DB2 type TIMESTAMP. |
java.lang.String | getLastupdate() This method provides access to the ORDSHIPHST.LASTUPDATE column of DB2 type TIMESTAMP. |
java.sql.Timestamp | getLastupdateInEJBType() This method provides access to the ORDSHIPHST.LASTUPDATE column of DB2 type TIMESTAMP. |
java.lang.String | getOrderItemsId() This method provides access to the ORDSHIPHST.ORDERITEMS_ID column of DB2 type BIGINT NOT NULL. |
java.lang.Long | getOrderItemsIdInEJBType() This method provides access to the ORDSHIPHST.ORDERITEMS_ID column of DB2 type BIGINT NOT NULL. |
java.lang.String | getOrdShipHstNum() This method provides access to the ORDSHIPHST.ORDSHIPHSTNUM column of DB2 type INTEGER NOT NULL. |
java.lang.Integer | getOrdShipHstNumInEJBType() This method provides access to the ORDSHIPHST.ORDSHIPHSTNUM column of DB2 type INTEGER NOT NULL. |
java.lang.String | getQtyReturned() This method provides access to the ORDSHIPHST.QTYRETURNED column of DB2 type INTEGER NOT NULL DEFAULT 0. |
java.lang.Integer | getQtyReturnedInEJBType() This method provides access to the ORDSHIPHST.QTYRETURNED column of DB2 type INTEGER NOT NULL DEFAULT 0. |
java.lang.String | getQtyShipped() This method provides access to the ORDSHIPHST.QTYSHIPPED column of DB2 type INTEGER. |
java.lang.Integer | getQtyShippedInEJBType() This method provides access to the ORDSHIPHST.QTYSHIPPED column of DB2 type INTEGER. |
java.lang.String | getReceiptId() This method provides access to the ORDSHIPHST.RECEIPT_ID column of DB2 type BIGINT. |
java.lang.Long | getReceiptIdInEJBType() This method provides access to the ORDSHIPHST.RECEIPT_ID column of DB2 type BIGINT. |
java.lang.String | getVersionSpcId() This method provides access to the ORDSHIPHST.VERSIONSPC_ID column of DB2 type BIGINT NOT NULL. |
java.lang.Long | getVersionSpcIdInEJBType() This method provides access to the ORDSHIPHST.VERSIONSPC_ID column of DB2 type BIGINT NOT NULL. |
protected void | instantiateEJB() |
protected boolean | instantiateEJBByPrimaryKey() |
void | refreshCopyHelper() Load data from the EJBObject. |
void | setDateShipped(java.lang.String newValue) This method accesses a non-CMP field |
void | setDateShipped(java.sql.Timestamp newValue) This method accesses a non-CMP field |
void | setInitKey_orderItemsId(java.lang.String newValue) Set the primary key for this object |
void | setInitKey_ordShipHstNum(java.lang.String newValue) Set the primary key for this object |
void | setLastupdate(java.lang.String newValue) This method accesses a non-CMP field |
void | setLastupdate(java.sql.Timestamp newValue) This method accesses a non-CMP field |
void | setOrderItemsId(java.lang.Long newValue) This method accesses a non-CMP field |
void | setOrderItemsId(java.lang.String newValue) This method accesses a non-CMP field |
void | setOrdShipHstNum(java.lang.Integer newValue) This method accesses a non-CMP field |
void | setOrdShipHstNum(java.lang.String newValue) This method accesses a non-CMP field |
void | setQtyReturned(java.lang.Integer newValue) This method accesses a non-CMP field |
void | setQtyReturned(java.lang.String newValue) This method accesses a non-CMP field |
void | setQtyShipped(java.lang.Integer newValue) This method accesses a non-CMP field |
void | setQtyShipped(java.lang.String newValue) This method accesses a non-CMP field |
void | setReceiptId(java.lang.Long newValue) This method accesses a non-CMP field |
void | setReceiptId(java.lang.String newValue) This method accesses a non-CMP field |
void | setVersionSpcId(java.lang.Long newValue) This method accesses a non-CMP field |
void | setVersionSpcId(java.lang.String newValue) This method accesses a non-CMP field |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public OrderItemShippingHistoryAccessBean()
public OrderItemShippingHistoryAccessBean(javax.ejb.EJBObject o) throws java.rmi.RemoteException
public OrderItemShippingHistoryAccessBean(java.lang.Long newOrderItemsId, java.lang.Long newVersionSpcId, java.lang.Integer newOrdShipHstNum, java.lang.Integer newQtyReturned) throws javax.naming.NamingException, javax.ejb.CreateException, java.rmi.RemoteException, javax.ejb.FinderException
Maps to a corresponding ejbCreate method in the home interface of the EJB
Method Detail |
public java.util.Enumeration findByOrderItemsId(java.lang.Long aOrderItemsId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves the information about inventory that has been released for fulfillment with the specified ORDERITEMS_ID
The SQL query used to fetch the requested row from the ORDSHIPHST table is:
SELECT * FROM ORDSHIPHST T1 WHERE T1.ORDERITEMS_ID = ?
public java.util.Enumeration findNonTrackedInventoryByOrderItemsId(java.lang.Long argOrderItemId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves the information about inventory that has been released for fulfillment with the specified Receipt_Id and OrderItems_id
The SQL query used to fetch the requested row from the ORDSHIPHST table is:
SELECT * FROM ORDSHIPHST T1 WHERE T1.Receipt_Id is null and T1.OrderItems_id =?
public void setInitKey_orderItemsId(java.lang.String newValue)
Set the primary key for this object
public void setInitKey_ordShipHstNum(java.lang.String newValue)
Set the primary key for this object
protected java.lang.String defaultJNDIName()
protected void instantiateEJB() throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
protected boolean instantiateEJBByPrimaryKey() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.naming.NamingException
public void commitCopyHelper() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
Update(flush) data to the EJBObject (persistent storage).
public void refreshCopyHelper() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
Load data from the EJBObject.
public java.lang.String getQtyShipped() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDSHIPHST.QTYSHIPPED column of DB2 type INTEGER.
The following is a description of this column:
Quantity shipped from this receipt.
public java.lang.Integer getQtyShippedInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDSHIPHST.QTYSHIPPED column of DB2 type INTEGER.
The following is a description of this column:
Quantity shipped from this receipt.
public void setQtyShipped(java.lang.String newValue)
public void setQtyShipped(java.lang.Integer newValue)
public java.lang.String getVersionSpcId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDSHIPHST.VERSIONSPC_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The item that describes the shipped inventory.
public java.lang.Long getVersionSpcIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDSHIPHST.VERSIONSPC_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The item that describes the shipped inventory.
public void setVersionSpcId(java.lang.String newValue)
public void setVersionSpcId(java.lang.Long newValue)
public java.lang.String getQtyReturned() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDSHIPHST.QTYRETURNED column of DB2 type INTEGER NOT NULL DEFAULT 0.
The following is a description of this column:
The amount returned by the customer.
public java.lang.Integer getQtyReturnedInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDSHIPHST.QTYRETURNED column of DB2 type INTEGER NOT NULL DEFAULT 0.
The following is a description of this column:
The amount returned by the customer.
public void setQtyReturned(java.lang.String newValue)
public void setQtyReturned(java.lang.Integer newValue)
public java.lang.String getOrdShipHstNum() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDSHIPHST.ORDSHIPHSTNUM column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Uniquely identifies this row for an OrderItem.
public java.lang.Integer getOrdShipHstNumInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDSHIPHST.ORDSHIPHSTNUM column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Uniquely identifies this row for an OrderItem.
public void setOrdShipHstNum(java.lang.String newValue)
public void setOrdShipHstNum(java.lang.Integer newValue)
public java.lang.String getOrderItemsId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDSHIPHST.ORDERITEMS_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The OrderItem.
public java.lang.Long getOrderItemsIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDSHIPHST.ORDERITEMS_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The OrderItem.
public void setOrderItemsId(java.lang.String newValue)
public void setOrderItemsId(java.lang.Long newValue)
public java.lang.String getLastupdate() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDSHIPHST.LASTUPDATE column of DB2 type TIMESTAMP.
The following is a description of this column:
The time of last update.
public java.sql.Timestamp getLastupdateInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDSHIPHST.LASTUPDATE column of DB2 type TIMESTAMP.
The following is a description of this column:
The time of last update.
public void setLastupdate(java.lang.String newValue)
public void setLastupdate(java.sql.Timestamp newValue)
public java.lang.String getDateShipped() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDSHIPHST.DATESHIPPED column of DB2 type TIMESTAMP.
The following is a description of this column:
The time the OrderItem was released for fulfillment.
public java.sql.Timestamp getDateShippedInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDSHIPHST.DATESHIPPED column of DB2 type TIMESTAMP.
The following is a description of this column:
The time the OrderItem was released for fulfillment.
public void setDateShipped(java.lang.String newValue)
public void setDateShipped(java.sql.Timestamp newValue)
public java.lang.String getReceiptId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDSHIPHST.RECEIPT_ID column of DB2 type BIGINT.
The following is a description of this column:
The receipt for the shipped inventory.
public java.lang.Long getReceiptIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDSHIPHST.RECEIPT_ID column of DB2 type BIGINT.
The following is a description of this column:
The receipt for the shipped inventory.
public void setReceiptId(java.lang.String newValue)
public void setReceiptId(java.lang.Long newValue)
(C) Copyright IBM Corporation 1996, 2005. All Rights Reserved.