|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.ibm.ivj.ejb.runtime.AbstractAccessBean | +--com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean | +--com.ibm.commerce.order.objects.OrderAccessBean
This bean provides access to the ORDERS table.
The following is a description of this table:
Each row in this table represents an Order in a Store.
Fields inherited from class com.ibm.ivj.ejb.runtime.AbstractAccessBean |
DEFAULT_NAMESERVICE_PROVIDER_URL, DEFAULT_NAMESERVICE_TYPE, ejbRef |
Constructor Summary | |
OrderAccessBean()
Default constructor. |
|
OrderAccessBean(javax.ejb.EJBObject object)
Creates an access bean for the specified EJB |
|
OrderAccessBean(java.lang.Long anMemberId,
java.lang.Integer anStoreEntityId,
java.lang.Double afSequence,
java.math.BigDecimal afTotalTax,
java.sql.Timestamp atsLastUpdate)
Maps to a corresponding ejbCreate method in the home interface of the EJB |
|
OrderAccessBean(java.lang.Long anMemberId,
java.lang.Integer anStoreEntityId,
java.lang.Double afSequence,
java.sql.Timestamp atsLastUpdate)
Maps to a corresponding ejbCreate method in the home interface of the EJB |
|
OrderAccessBean(java.lang.Long anMemberId,
java.lang.Integer anStoreEntityId,
java.sql.Timestamp atsLastUpdate)
Maps to a corresponding ejbCreate method in the home interface of the EJB |
Method Summary | |
void |
clearOrderItemsCache()
IBM internal use only. |
void |
commitCopyHelper()
Update(flush) data to the EJBObject (persistent storage). |
java.util.Enumeration |
findByMemberForUpdate(java.lang.Long anMemberId)
Retrieves all the orders for given customer. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE T1.MEMBER_ID = ? for update |
OrderAccessBean |
findByOrderForUpdate(java.lang.Long anOrderId)
Retrieves OrderAccessBean representing the order with specified order identifier. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE T1.ORDERS_ID = ? for update |
java.util.Enumeration |
findByStatus(java.lang.String astrStatus)
Retrieves all the orders with specified status. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE (T1.STATUS = ?) |
java.util.Enumeration |
findByStatusAndMember(java.lang.String astrStatus,
java.lang.Long anMemberId)
Retrieves all the orders for specified status and member. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE (T1.STATUS = ?) AND (T1.MEMBER_ID = ?) ORDER BY T1.ORDERS_ID |
java.util.Enumeration |
findByStatusMemberAndStore(java.lang.String astrStatus,
java.lang.Long anMemberId,
java.lang.Integer anStoreEntityId)
Retrieves all the orders for specified status, member and store. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE (T1.STATUS = ?) AND (T1.MEMBER_ID = ?) AND (T1.STOREENT_ID = ?) ORDER BY T1.ORDERS_ID |
java.util.Enumeration |
findByStatusMemberAndStoreForUpdate(java.lang.String astrStatus,
java.lang.Long anMemberId,
java.lang.Integer anStoreEntityId)
Retrieves all the orders for specified status, member and store. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE (T1.STATUS = ?) AND (T1.MEMBER_ID = ?) AND (T1.STOREENT_ID = ?) ORDER BY T1.ORDERS_ID for update |
java.util.Enumeration |
findByStoreIdMemberIdAndStatus(java.lang.Integer aDByStoreIdMemberIdAndStatus,
java.lang.Long aDByStoreIdMemberIdAndStatus,
java.lang.String aDByStoreIdMemberIdAndStatus,
java.lang.String aDByStoreIdMemberIdAndStatus,
boolean aDByStoreIdMemberIdAndStatus)
IBM internal use only. |
java.util.Enumeration |
findCurrentPendingOrders()
Retrieves all the current pending orders. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'P') AND T1.ORDERS_ID IN (SELECT ORDERS_ID FROM CPENDORDER) ORDER BY T1.LASTUPDATE |
java.util.Enumeration |
findCurrentPendingOrdersByMember(java.lang.Long anMemberId)
Retrieves all the current pending orders for specified customer. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'P') AND T1.ORDERS_ID IN (SELECT ORDERS_ID FROM CPENDORDER) ORDER BY T1.LASTUPDATE |
java.util.Enumeration |
findCurrentPendingOrdersByMemberAndStore(java.lang.Long anMemberId,
java.lang.Integer anStoreEntityId)
Retrieves all the current pending orders for specified customer and store. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'P') AND (T1.ORDERS_ID IN (SELECT ORDERS_ID FROM CPENDORDER WHERE MEMBER_ID = ?)) AND (STOREENT_ID = ?) ORDER BY T1.LASTUPDATE |
java.util.Enumeration |
findOrderTemplatesByMember(java.lang.Long anMemberId)
Retrieves all the order templates for specified member. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE T1.ORDERS_ID in (select ORDERS_ID from ORDERTMPL where MEMBER_ID = ?) |
java.util.Enumeration |
findOrderTemplatesByMemberAndUsage(java.lang.Long anMemberId,
java.lang.Integer anUsage)
Retrieves all the order templates for specified member and usage. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE T1.ORDERS_ID in (select ORDERS_ID from ORDERTMPL where MEMBER_ID = ? and USAGE = ?) |
java.util.Enumeration |
findOrderTemplatesByStoreAndMember(java.lang.Integer anStoreEntityId,
java.lang.Long anMemberId)
Retrieves all the order templates for specified store and member. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE T1.STOREENT_ID = ? and T1.ORDERS_ID in (select ORDERS_ID from ORDERTMPL where MEMBER_ID = ?) |
java.util.Enumeration |
findOrderTemplatesByStoreMemberAndUsage(java.lang.Integer anStoreEntityId,
java.lang.Long anMemberId,
java.lang.Integer anUsage)
Retrieves all the order templates for specified store, member and usage. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE T1.STOREENT_ID = ? and T1.ORDERS_ID in (select ORDERS_ID from ORDERTMPL where MEMBER_ID = ? and USAGE = ?) |
java.util.Enumeration |
findPendingOrders(java.lang.Long anMemberId,
java.lang.Long anStoreEntityId)
Retrieves all the pending orders for given customer and store. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE (T1.MEMBER_ID = ?) AND (T1.STOREENT_ID = ?) AND (T1.STATUS = 'P') |
java.util.Enumeration |
findPrivateRequisitionListByMember(java.lang.Long anMemberId)
Retrieves all the private requisition lists for specified customer. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'Y') AND (T1.MEMBER_ID = ?) ORDER BY T1.LASTUPDATE |
java.util.Enumeration |
findPrivateRequisitionListByMemberAndStore(java.lang.Long anMemberId,
java.lang.Integer anStoreId)
Retrieves all the private requisition lists for specified customer and store. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'Y') AND (T1.MEMBER_ID = ?) AND (T1.STOREENT_ID = ?) |
java.util.Enumeration |
findPrivateRequisitionListByMemberOrderByLastUpdate(java.lang.Long anMemberId)
Retrieves all the private requisition lists for specified customer. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'Y') AND (T1.MEMBER_ID = ?) ORDER BY T1.LASTUPDATE |
java.util.Enumeration |
findShareableRequisitionListByMember(java.lang.Long anMemberId)
Retrieves all the shareable requisition lists that can be accessed by the specified customer. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'Z') AND (T1.MEMBER_ID = ANY (SELECT T3.DESCENDANT_ID FROM MBRREL T2, MBRREL T3 WHERE T2.ANCESTOR_ID = T3.ANCESTOR_ID AND T2.SEQUENCE = 1 AND T3.SEQUENCE = 1 AND T2.DESCENDANT_ID = ?)) |
java.util.Enumeration |
findShareableRequisitionListByMemberAndStore(java.lang.Long anMemberId,
java.lang.Integer anStoreId)
Retrieves all the shareable requisition lists for given store that can be accessed by the specified customer. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'Z') AND (T1.MEMBER_ID = ANY (SELECT T3.DESCENDANT_ID FROM MBRREL T2, MBRREL T3 WHERE T2.ANCESTOR_ID = T3.ANCESTOR_ID AND T2.SEQUENCE = 1 AND T3.SEQUENCE = 1 AND T2.DESCENDANT_ID = ?)) AND (T1.STOREENT_ID = ?) |
java.util.Enumeration |
findShareableRequisitionListOwnedByMember(java.lang.Long anMemberId)
Retrieves all the shareable requisition lists for specified customer. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'Z') AND (T1.MEMBER_ID = ?) |
java.util.Enumeration |
findShareableRequisitionListOwnedByMemberAndStore(java.lang.Long anMemberId,
java.lang.Integer anStoreId)
Retrieves all the shareable requisition lists for specified customer and store. The SQL query used to fetch all the required rows from the ORDERS table is: SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'Z') AND (T1.MEMBER_ID = ?) AND (T1.STOREENT_ID = ?) |
java.util.Enumeration |
findTemplatedOrdersByStoreIdMemberIdAndUsage(java.lang.Integer aDTemplatedOrdersByStoreIdMemberIdAndUsage,
java.lang.Long aDTemplatedOrdersByStoreIdMemberIdAndUsage,
java.lang.Integer aDTemplatedOrdersByStoreIdMemberIdAndUsage,
java.lang.String aDTemplatedOrdersByStoreIdMemberIdAndUsage,
boolean aDTemplatedOrdersByStoreIdMemberIdAndUsage)
IBM internal use only. |
java.util.Enumeration |
findWithPushDownQuery(java.lang.String astrWithPushDownQuery)
Retrieves orders identified by the specified WHERE clause. |
boolean |
fulfills(java.lang.Long anMemberId,
java.lang.String astrRelationship)
Determines if a given member fulfills a given relationship with the order resource. |
java.sql.Timestamp |
getActualShipDate()
Retrieves the latest time any of the order items in the order have been shipped. The SQL query used to fetch the requested data from the ORDERITEMS table is: SELECT MAX(T1.TIMESHIPPED) FROM ORDERITEMS T1 WHERE T1.ORDERS_ID=?"; |
java.lang.String |
getAddressId()
This method provides access to the ORDERS.ADDRESS_ID column of DB2 type BIGINT NULL. |
java.lang.Long |
getAddressIdInEJBType()
This method provides access to the ORDERS.ADDRESS_ID column of DB2 type BIGINT NULL. |
java.lang.String |
getCurrency()
This method provides access to the ORDERS.CURRENCY column of DB2 type CHAR(10) NULL. |
java.lang.String |
getDescription()
This method provides access to the ORDERS.DESCRIPTION column of DB2 type VARCHAR(254) NULL. |
java.sql.Timestamp |
getEstimatedOrPromisedShipDate()
Retreives the latest time any of the order items in the order are expected or promised (for placed orders) to be shipped. |
java.sql.Timestamp |
getEstimatedShipDate()
Retreives the latest time any of the order items in the order are expected to be shipped. |
java.lang.String |
getField1()
This method provides access to the ORDERS.FIELD1 column of DB2 type INTEGER NULL. |
java.lang.Integer |
getField1InEJBType()
This method provides access to the ORDERS.FIELD1 column of DB2 type INTEGER NULL. |
java.lang.String |
getField2()
This method provides access to the ORDERS.FIELD2 column of DB2 type DECIMAL(20,5) NULL. |
java.math.BigDecimal |
getField2InEJBType()
This method provides access to the ORDERS.FIELD2 column of DB2 type DECIMAL(20,5) NULL. |
java.lang.String |
getField3()
This method provides access to the ORDERS.FIELD3 column of DB2 type VARCHAR(254) NULL. |
java.lang.Object |
getGroupingAttributeValue(java.lang.String astrAttributeName,
GroupingContext aGroupContext)
Returns the value of a resource attribute - based on the attribute name and context. |
java.lang.String |
getLastUpdate()
This method provides access to the ORDERS.LASTUPDATE column of DB2 type TIMESTAMP NULL. |
java.sql.Timestamp |
getLastUpdateInEJBType()
This method provides access to the ORDERS.LASTUPDATE column of DB2 type TIMESTAMP NULL. |
java.lang.String |
getLock()
This method provides access to the ORDERS.LOCKED column of DB2 type CHAR(1) NULL. |
java.lang.String |
getMemberId()
This method provides access to the ORDERS.MEMBER_ID column of DB2 type BIGINT NOT NULL. |
java.lang.Long |
getMemberIdInEJBType()
This method provides access to the ORDERS.MEMBER_ID column of DB2 type BIGINT NOT NULL. |
java.lang.String |
getMerchantOrderId()
This method provides access to the ORDERS.ORMORDER column of DB2 type CHAR(30) NULL. |
java.lang.String |
getOrderChannelTypeId()
This method provides access to the ORDERS.ORDCHNLTYP_ID column of DB2 type BIGINT NULL. |
java.lang.Long |
getOrderChannelTypeIdInEJBType()
This method provides access to the ORDERS.ORDCHNLTYP_ID column of DB2 type BIGINT NULL. |
java.lang.String |
getOrderId()
This method provides access to the ORDERS.ORDERS_ID column of DB2 type BIGINT NOT NULL. |
java.lang.Long |
getOrderIdInEJBType()
This method provides access to the ORDERS.ORDERS_ID column of DB2 type BIGINT NOT NULL. |
OrderItemAccessBean[] |
getOrderItems()
Returns an array of OrderItemAccessBean objects representing order items in this order. |
OrderItemAccessBean[] |
getOrderItemsForUpdate()
Returns an array of OrderItemAccessBean objects representing order items in this order. |
OrderItemAccessBean[] |
getOrderItemsSortedByOrderItemId()
Returns an array of OrderItemAccessBean objects sorted by order item id representing order items in this order. |
java.lang.String |
getOrganizationId()
This method provides access to the ORDERS.ORGENTITY_ID column of DB2 type BIGINT NULL. |
java.lang.Long |
getOrganizationIdInEJBType()
This method provides access to the ORDERS.ORGENTITY_ID column of DB2 type BIGINT NULL. |
java.lang.Long |
getOwner()
Returns the member id of the owner; used by access control. |
java.lang.String |
getPlaceOrderTime()
This method provides access to the ORDERS.TIMEPLACED column of DB2 type TIMESTAMP NULL. |
java.sql.Timestamp |
getPlaceOrderTimeInEJBType()
This method provides access to the ORDERS.TIMEPLACED column of DB2 type TIMESTAMP NULL. |
java.sql.Timestamp |
getPromisedShipDate()
Retreives the latest time that any of the order items in the order are promised to be shipped. |
java.lang.String |
getProviderOrderNumber()
This method provides access to the ORDERS.PROVIDERORDERNUM column of DB2 type INTEGER NULL. |
java.lang.Integer |
getProviderOrderNumberInEJBType()
This method provides access to the ORDERS.PROVIDERORDERNUM column of DB2 type INTEGER NULL. |
java.lang.String |
getSequence()
This method provides access to the ORDERS.SEQUENCE column of DB2 type FLOAT NOT NULL. |
java.lang.Double |
getSequenceInEJBType()
This method provides access to the ORDERS.SEQUENCE column of DB2 type FLOAT NOT NULL. |
java.lang.String |
getShipAsComplete()
This method provides access to the ORDERS.SHIPASCOMPLETE column of DB2 type CHAR(1) NOT NULL. |
java.lang.String |
getStatus()
This method provides access to the ORDERS.STATUS column of DB2 type CHAR(1) NULL. |
java.lang.String |
getStoreEntityId()
This method provides access to the ORDERS.STOREENT_ID column of DB2 type INTEGER NOT NULL. |
java.lang.Integer |
getStoreEntityIdInEJBType()
This method provides access to the ORDERS.STOREENT_ID column of DB2 type INTEGER NOT NULL. |
SubOrderAccessBean[] |
getSubOrders()
Returns an array of SubOrderAccessBean objects representing suborders for this order. |
java.lang.String |
getTotalAdjustment()
This method provides access to the ORDERS.TOTALADJUSTMENT column of DB2 type DECIMAL(20,5) NULL. |
java.math.BigDecimal |
getTotalAdjustmentByDisplayLevel(java.lang.Integer aTotalAdjustmentByDisplayLevel)
IBM internal use only. |
java.math.BigDecimal |
getTotalAdjustmentInEJBType()
This method provides access to the ORDERS.TOTALADJUSTMENT column of DB2 type DECIMAL(20,5) NULL. |
java.lang.String |
getTotalProductPrice()
This method provides access to the ORDERS.TOTALPRODUCT column of DB2 type DECIMAL(20,5) NULL. |
java.math.BigDecimal |
getTotalProductPriceInEJBType()
This method provides access to the ORDERS.TOTALPRODUCT column of DB2 type DECIMAL(20,5) NULL. |
java.lang.String |
getTotalShippingCharge()
This method provides access to the ORDERS.TOTALSHIPPING column of DB2 type DECIMAL(20,5) NULL. |
java.math.BigDecimal |
getTotalShippingChargeInEJBType()
This method provides access to the ORDERS.TOTALSHIPPING column of DB2 type DECIMAL(20,5) NULL. |
java.lang.String |
getTotalShippingTax()
This method provides access to the ORDERS.TOTALTAXSHIPPING column of DB2 type DECIMAL(20,5) NULL. |
java.math.BigDecimal |
getTotalShippingTaxInEJBType()
This method provides access to the ORDERS.TOTALTAXSHIPPING column of DB2 type DECIMAL(20,5) NULL. |
java.lang.String |
getTotalTax()
This method provides access to the ORDERS.TOTALTAX column of DB2 type DECIMAL(20,5) NULL. |
java.math.BigDecimal |
getTotalTaxInEJBType()
This method provides access to the ORDERS.TOTALTAX column of DB2 type DECIMAL(20,5) NULL. |
void |
refreshCopyHelper()
Load data from the EJBObject. |
void |
setAddressId(java.lang.Long aAddressId)
This method provides access to the ORDERS.ADDRESS_ID column of DB2 type BIGINT NULL. |
void |
setAddressId(java.lang.String aAddressId)
This method provides access to the ORDERS.ADDRESS_ID column of DB2 type BIGINT NULL. |
void |
setCurrency(java.lang.String aCurrency)
This method provides access to the ORDERS.CURRENCY column of DB2 type CHAR(10) NULL. |
void |
setDescription(java.lang.String aDescription)
This method provides access to the ORDERS.DESCRIPTION column of DB2 type VARCHAR(254) NULL. |
void |
setField1(java.lang.Integer aField1)
This method provides access to the ORDERS.FIELD1 column of DB2 type INTEGER NULL. |
void |
setField1(java.lang.String aField1)
This method provides access to the ORDERS.FIELD1 column of DB2 type INTEGER NULL. |
void |
setField2(java.math.BigDecimal aField2)
This method provides access to the ORDERS.FIELD2 column of DB2 type DECIMAL(20,5) NULL. |
void |
setField2(java.lang.String aField2)
This method provides access to the ORDERS.FIELD2 column of DB2 type DECIMAL(20,5) NULL. |
void |
setField3(java.lang.String aField3)
This method provides access to the ORDERS.FIELD3 column of DB2 type VARCHAR(254) NULL. |
void |
setInitKey_orderId(java.lang.String aInitKey_orderId)
Set the primary key for this object |
void |
setLastUpdate(java.lang.String aLastUpdate)
This method provides access to the ORDERS.LASTUPDATE column of DB2 type TIMESTAMP NULL. |
void |
setLastUpdate(java.sql.Timestamp aLastUpdate)
This method provides access to the ORDERS.LASTUPDATE column of DB2 type TIMESTAMP NULL. |
void |
setLock(java.lang.String aLock)
This method provides access to the ORDERS.LOCKED column of DB2 type CHAR(1) NULL. |
void |
setMemberId(java.lang.Long aMemberId)
This method provides access to the ORDERS.MEMBER_ID column of DB2 type BIGINT NOT NULL. |
void |
setMemberId(java.lang.String aMemberId)
This method provides access to the ORDERS.MEMBER_ID column of DB2 type BIGINT NOT NULL. |
void |
setMerchantOrderId(java.lang.String aMerchantOrderId)
This method provides access to the ORDERS.ORMORDER column of DB2 type CHAR(30) NULL. |
void |
setOrderChannelTypeId(java.lang.Long aOrderChannelTypeId)
This method provides access to the ORDERS.ORDCHNLTYP_ID column of DB2 type BIGINT NULL. |
void |
setOrderChannelTypeId(java.lang.String aOrderChannelTypeId)
This method provides access to the ORDERS.ORDCHNLTYP_ID column of DB2 type BIGINT NULL. |
void |
setOrganizationId(java.lang.Long aOrganizationId)
This method provides access to the ORDERS.ORGENTITY_ID column of DB2 type BIGINT NULL. |
void |
setOrganizationId(java.lang.String aOrganizationId)
This method provides access to the ORDERS.ORGENTITY_ID column of DB2 type BIGINT NULL. |
void |
setPlaceOrderTime(java.lang.String aPlaceOrderTime)
This method provides access to the ORDERS.TIMEPLACED column of DB2 type TIMESTAMP NULL. |
void |
setPlaceOrderTime(java.sql.Timestamp aPlaceOrderTime)
This method provides access to the ORDERS.TIMEPLACED column of DB2 type TIMESTAMP NULL. |
void |
setProviderOrderNumber(java.lang.Integer aProviderOrderNumber)
This method provides access to the ORDERS.PROVIDERORDERNUM column of DB2 type INTEGER NULL. |
void |
setProviderOrderNumber(java.lang.String aProviderOrderNumber)
This method provides access to the ORDERS.PROVIDERORDERNUM column of DB2 type INTEGER NULL. |
void |
setSequence(java.lang.Double aSequence)
This method provides access to the ORDERS.SEQUENCE column of DB2 type FLOAT NOT NULL. |
void |
setSequence(java.lang.String aSequence)
This method provides access to the ORDERS.SEQUENCE column of DB2 type FLOAT NOT NULL. |
void |
setShipAsComplete(java.lang.String aShipAsComplete)
This method provides access to the ORDERS.SHIPASCOMPLETE column of DB2 type CHAR(1) NOT NULL. |
void |
setStatus(java.lang.String aStatus)
This method provides access to the ORDERS.STATUS column of DB2 type CHAR(1) NULL. |
void |
setStoreEntityId(java.lang.Integer aStoreEntityId)
This method provides access to the ORDERS.STOREENT_ID column of DB2 type INTEGER NOT NULL. |
void |
setStoreEntityId(java.lang.String aStoreEntityId)
This method provides access to the ORDERS.STOREENT_ID column of DB2 type INTEGER NOT NULL. |
void |
setTotalAdjustment(java.math.BigDecimal aTotalAdjustment)
This method provides access to the ORDERS.TOTALADJUSTMENT column of DB2 type DECIMAL(20,5) NULL. |
void |
setTotalAdjustment(java.lang.String aTotalAdjustment)
This method provides access to the ORDERS.TOTALADJUSTMENT column of DB2 type DECIMAL(20,5) NULL. |
void |
setTotalProductPrice(java.math.BigDecimal aTotalProductPrice)
This method provides access to the ORDERS.TOTALPRODUCT column of DB2 type DECIMAL(20,5) NULL. |
void |
setTotalProductPrice(java.lang.String aTotalProductPrice)
This method provides access to the ORDERS.TOTALPRODUCT column of DB2 type DECIMAL(20,5) NULL. |
void |
setTotalShippingCharge(java.math.BigDecimal aTotalShippingCharge)
This method provides access to the ORDERS.TOTALSHIPPING column of DB2 type DECIMAL(20,5) NULL. |
void |
setTotalShippingCharge(java.lang.String aTotalShippingCharge)
This method provides access to the ORDERS.TOTALSHIPPING column of DB2 type DECIMAL(20,5) NULL. |
void |
setTotalShippingTax(java.math.BigDecimal aTotalShippingTax)
This method provides access to the ORDERS.TOTALTAXSHIPPING column of DB2 type DECIMAL(20,5) NULL. |
void |
setTotalShippingTax(java.lang.String aTotalShippingTax)
This method provides access to the ORDERS.TOTALTAXSHIPPING column of DB2 type DECIMAL(20,5) NULL. |
void |
setTotalTax(java.math.BigDecimal aTotalTax)
This method provides access to the ORDERS.TOTALTAX column of DB2 type DECIMAL(20,5) NULL. |
void |
setTotalTax(java.lang.String aTotalTax)
This method provides access to the ORDERS.TOTALTAX column of DB2 type DECIMAL(20,5) NULL. |
Methods inherited from class com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean |
__getCache, __getCache, __getKey, __setCache, __setCache, __setKey, commitCopyHelper, createAccessBeans, createAccessBeans, instantiateEJBByPrimaryKey, refreshCopyHelper, setEJBRef |
Methods inherited from class com.ibm.ivj.ejb.runtime.AbstractAccessBean |
defaultJNDIName, defaultNameServiceType, defaultNameServiceURL, getEJBRef, getGlobalHome, getHome, getInit_GlobalNameServiceTypeName, getInit_GlobalNameServiceURLName, getInit_JNDIName, getInit_NameServiceTypeName, getInit_NameServiceURLName, getInitContext, getInitContext, instantiateEJB, resetEJBRef, resetHomeCache, setInit_GlobalNameServiceTypeName, setInit_GlobalNameServiceURLName, setInit_JNDIName, setInit_NameServiceTypeName, setInit_NameServiceURLName |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public OrderAccessBean()
Default constructor. Maps to findByPrimaryKey.
public OrderAccessBean(javax.ejb.EJBObject object) throws java.rmi.RemoteException
Creates an access bean for the specified EJB
object
- The EJB Object used for the access bean construction.java.rmi.RemoteException
- The java.rmi.RemoteException exceptionpublic OrderAccessBean(java.lang.Long anMemberId, java.lang.Integer anStoreEntityId, java.lang.Double afSequence, java.math.BigDecimal afTotalTax, java.sql.Timestamp atsLastUpdate) throws javax.naming.NamingException, javax.ejb.CreateException, javax.ejb.FinderException, java.rmi.RemoteException
Maps to a corresponding ejbCreate method in the home interface of the EJB
anMemberId
- java.lang.Long The customer of the orderanStoreEntityId
- java.lang.Integer The store entity the order is part ofafSequence
- java.lang.Double Maybe used by a user interface to control the sequence of orders in a listafTotalTax
- java.math.BigDecimal The sum of order items' tax amount for the order items in the orderatsLastUpdate
- java.sql.Timestamp The time the order was most recently updatedjavax.naming.NamingException
- The javax.naming.NamingException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionpublic OrderAccessBean(java.lang.Long anMemberId, java.lang.Integer anStoreEntityId, java.lang.Double afSequence, java.sql.Timestamp atsLastUpdate) throws javax.naming.NamingException, javax.ejb.CreateException, javax.ejb.FinderException, java.rmi.RemoteException
Maps to a corresponding ejbCreate method in the home interface of the EJB
anMemberId
- java.lang.Long The customer of the orderanStoreEntityId
- java.lang.Integer The store entity the order is part ofafSequence
- java.lang.Double Maybe used by a user interface to control the sequence of orders in a listatsLastUpdate
- java.sql.Timestamp The time the order was most recently updatedjavax.naming.NamingException
- The javax.naming.NamingException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionpublic OrderAccessBean(java.lang.Long anMemberId, java.lang.Integer anStoreEntityId, java.sql.Timestamp atsLastUpdate) throws javax.naming.NamingException, javax.ejb.CreateException, javax.ejb.FinderException, java.rmi.RemoteException
Maps to a corresponding ejbCreate method in the home interface of the EJB
anMemberId
- java.lang.Long The customer of the orderanStoreEntityId
- java.lang.Integer The store entity the order is part ofatsLastUpdate
- java.sql.Timestamp The time the order was most recently updatedjavax.naming.NamingException
- The javax.naming.NamingException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionMethod Detail |
public void clearOrderItemsCache() throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
IBM internal use only.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic void commitCopyHelper() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
Update(flush) data to the EJBObject (persistent storage).
commitCopyHelper
in class com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findByMemberForUpdate(java.lang.Long anMemberId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the orders for given customer.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE T1.MEMBER_ID = ? for update
anMemberId
- java.lang.Long The customer of the ordersjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic OrderAccessBean findByOrderForUpdate(java.lang.Long anOrderId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves OrderAccessBean representing the order with specified order identifier.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE T1.ORDERS_ID = ? for update
anOrderId
- java.lang.Long Order identifierjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findByStatus(java.lang.String astrStatus) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the orders with specified status.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE (T1.STATUS = ?)
astrStatus
- java.lang.String Order statusjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findByStatusAndMember(java.lang.String astrStatus, java.lang.Long anMemberId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the orders for specified status and member.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE (T1.STATUS = ?) AND (T1.MEMBER_ID = ?) ORDER BY T1.ORDERS_ID
astrStatus
- java.lang.String Order statusanMemberId
- java.lang.Long The customer of the orderjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findByStatusMemberAndStore(java.lang.String astrStatus, java.lang.Long anMemberId, java.lang.Integer anStoreEntityId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the orders for specified status, member and store.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE (T1.STATUS = ?) AND (T1.MEMBER_ID = ?) AND (T1.STOREENT_ID = ?) ORDER BY T1.ORDERS_ID
astrStatus
- java.lang.String Order statusanMemberId
- java.lang.Long The customer of the orderanStoreEntityId
- java.lang.Integer The store entity the order is part ofjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findByStatusMemberAndStoreForUpdate(java.lang.String astrStatus, java.lang.Long anMemberId, java.lang.Integer anStoreEntityId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the orders for specified status, member and store.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE (T1.STATUS = ?) AND (T1.MEMBER_ID = ?) AND (T1.STOREENT_ID = ?) ORDER BY T1.ORDERS_ID for update
astrStatus
- java.lang.String Order statusanMemberId
- java.lang.Long The customer of the orderanStoreEntityId
- java.lang.Integer The store entity the order is part ofjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findByStoreIdMemberIdAndStatus(java.lang.Integer aDByStoreIdMemberIdAndStatus, java.lang.Long aDByStoreIdMemberIdAndStatus, java.lang.String aDByStoreIdMemberIdAndStatus, java.lang.String aDByStoreIdMemberIdAndStatus, boolean aDByStoreIdMemberIdAndStatus) throws javax.ejb.FinderException, java.rmi.RemoteException, javax.naming.NamingException
IBM internal use only.
aDByStoreIdMemberIdAndStatus
- java.lang.IntegeraDByStoreIdMemberIdAndStatus
- java.lang.LongaDByStoreIdMemberIdAndStatus
- java.lang.StringaDByStoreIdMemberIdAndStatus
- java.lang.StringaDByStoreIdMemberIdAndStatus
- booleanjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findCurrentPendingOrders() throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the current pending orders.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'P') AND T1.ORDERS_ID IN (SELECT ORDERS_ID FROM CPENDORDER) ORDER BY T1.LASTUPDATE
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findCurrentPendingOrdersByMember(java.lang.Long anMemberId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the current pending orders for specified customer.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'P') AND T1.ORDERS_ID IN (SELECT ORDERS_ID FROM CPENDORDER) ORDER BY T1.LASTUPDATE
anMemberId
- java.lang.Long The customer of the orderjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findCurrentPendingOrdersByMemberAndStore(java.lang.Long anMemberId, java.lang.Integer anStoreEntityId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the current pending orders for specified customer and store.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'P') AND (T1.ORDERS_ID IN (SELECT ORDERS_ID FROM CPENDORDER WHERE MEMBER_ID = ?)) AND (STOREENT_ID = ?) ORDER BY T1.LASTUPDATE
anMemberId
- java.lang.Long The customer of the orderanStoreEntityId
- java.lang.Integer The store entity the order is part ofjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findOrderTemplatesByMember(java.lang.Long anMemberId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the order templates for specified member.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE T1.ORDERS_ID in (select ORDERS_ID from ORDERTMPL where MEMBER_ID = ?)
anMemberId
- java.lang.Long The customer of the order templatesjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findOrderTemplatesByMemberAndUsage(java.lang.Long anMemberId, java.lang.Integer anUsage) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the order templates for specified member and usage.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE T1.ORDERS_ID in (select ORDERS_ID from ORDERTMPL where MEMBER_ID = ? and USAGE = ?)
anMemberId
- java.lang.Long The customer of the order templatesanUsage
- java.lang.Integer The intended usage of the order templatesjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findOrderTemplatesByStoreAndMember(java.lang.Integer anStoreEntityId, java.lang.Long anMemberId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the order templates for specified store and member.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE T1.STOREENT_ID = ? and T1.ORDERS_ID in (select ORDERS_ID from ORDERTMPL where MEMBER_ID = ?)
anStoreEntityId
- java.lang.Integer The store entity the order templates are part ofanMemberId
- java.lang.Long The customer of the order templatesjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findOrderTemplatesByStoreMemberAndUsage(java.lang.Integer anStoreEntityId, java.lang.Long anMemberId, java.lang.Integer anUsage) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the order templates for specified store, member and usage.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE T1.STOREENT_ID = ? and T1.ORDERS_ID in (select ORDERS_ID from ORDERTMPL where MEMBER_ID = ? and USAGE = ?)
anStoreEntityId
- java.lang.Integer The store entity the order templates are part ofanMemberId
- java.lang.Long The customer of the order templatesanUsage
- java.lang.Integer The intended usage of the order templatesjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findPendingOrders(java.lang.Long anMemberId, java.lang.Long anStoreEntityId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the pending orders for given customer and store.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE (T1.MEMBER_ID = ?) AND (T1.STOREENT_ID = ?) AND (T1.STATUS = 'P')
anMemberId
- java.lang.Long The customer of the ordersanStoreEntityId
- java.lang.Long The store entity the orders are part ofjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findPrivateRequisitionListByMember(java.lang.Long anMemberId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the private requisition lists for specified customer.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'Y') AND (T1.MEMBER_ID = ?) ORDER BY T1.LASTUPDATE
anMemberId
- java.lang.Long The customer of the requisition listjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findPrivateRequisitionListByMemberAndStore(java.lang.Long anMemberId, java.lang.Integer anStoreId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the private requisition lists for specified customer and store.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'Y') AND (T1.MEMBER_ID = ?) AND (T1.STOREENT_ID = ?)
anMemberId
- java.lang.Long The customer of the requisition listanStoreId
- java.lang.Integer The store entity the requisition list is part ofjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findPrivateRequisitionListByMemberOrderByLastUpdate(java.lang.Long anMemberId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the private requisition lists for specified customer.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'Y') AND (T1.MEMBER_ID = ?) ORDER BY T1.LASTUPDATE
anMemberId
- java.lang.Long The customer of the requisition listjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findShareableRequisitionListByMember(java.lang.Long anMemberId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the shareable requisition lists that can be accessed by the specified customer.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'Z') AND (T1.MEMBER_ID = ANY (SELECT T3.DESCENDANT_ID FROM MBRREL T2, MBRREL T3 WHERE T2.ANCESTOR_ID = T3.ANCESTOR_ID AND T2.SEQUENCE = 1 AND T3.SEQUENCE = 1 AND T2.DESCENDANT_ID = ?))
anMemberId
- java.lang.Long The customer to access the requisition listjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findShareableRequisitionListByMemberAndStore(java.lang.Long anMemberId, java.lang.Integer anStoreId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the shareable requisition lists for given store that can be accessed by the specified customer.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'Z') AND (T1.MEMBER_ID = ANY (SELECT T3.DESCENDANT_ID FROM MBRREL T2, MBRREL T3 WHERE T2.ANCESTOR_ID = T3.ANCESTOR_ID AND T2.SEQUENCE = 1 AND T3.SEQUENCE = 1 AND T2.DESCENDANT_ID = ?)) AND (T1.STOREENT_ID = ?)
anMemberId
- java.lang.Long The customer to access the requisition listanStoreId
- java.lang.Integer The store entity the requisition list is part ofjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findShareableRequisitionListOwnedByMember(java.lang.Long anMemberId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the shareable requisition lists for specified customer.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'Z') AND (T1.MEMBER_ID = ?)
anMemberId
- java.lang.Long The customer of the requisition listjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findShareableRequisitionListOwnedByMemberAndStore(java.lang.Long anMemberId, java.lang.Integer anStoreId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the shareable requisition lists for specified customer and store.
The SQL query used to fetch all the required rows from the
ORDERS table is:
SELECT * FROM ORDERS T1 WHERE (T1.STATUS = 'Z') AND (T1.MEMBER_ID = ?) AND (T1.STOREENT_ID = ?)
anMemberId
- java.lang.Long The customer of the requisition listanStoreId
- java.lang.Integer The store entity the requisition list is part ofjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findTemplatedOrdersByStoreIdMemberIdAndUsage(java.lang.Integer aDTemplatedOrdersByStoreIdMemberIdAndUsage, java.lang.Long aDTemplatedOrdersByStoreIdMemberIdAndUsage, java.lang.Integer aDTemplatedOrdersByStoreIdMemberIdAndUsage, java.lang.String aDTemplatedOrdersByStoreIdMemberIdAndUsage, boolean aDTemplatedOrdersByStoreIdMemberIdAndUsage) throws javax.ejb.FinderException, java.rmi.RemoteException, javax.naming.NamingException
IBM internal use only.
aDTemplatedOrdersByStoreIdMemberIdAndUsage
- java.lang.IntegeraDTemplatedOrdersByStoreIdMemberIdAndUsage
- java.lang.LongaDTemplatedOrdersByStoreIdMemberIdAndUsage
- java.lang.IntegeraDTemplatedOrdersByStoreIdMemberIdAndUsage
- java.lang.StringaDTemplatedOrdersByStoreIdMemberIdAndUsage
- booleanjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findWithPushDownQuery(java.lang.String astrWithPushDownQuery) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves orders identified by the specified WHERE clause.
astrWithPushDownQuery
- java.lang.String The WHERE clause string.java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic boolean fulfills(java.lang.Long anMemberId, java.lang.String astrRelationship) throws java.rmi.RemoteException, java.lang.Exception, javax.ejb.FinderException, javax.naming.NamingException
anMemberId
- java.lang.Long Member id of the memberastrRelationship
- java.lang.String The relationship the member has with respect to the resourcejava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjava.lang.Exception
- The java.lang.Exception exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.sql.Timestamp getActualShipDate() throws javax.naming.NamingException, javax.ejb.CreateException, java.sql.SQLException, java.rmi.RemoteException, javax.ejb.FinderException
Retrieves the latest time any of the order items in the order have been shipped.
The SQL query used to fetch the requested data from the
ORDERITEMS table is:
SELECT MAX(T1.TIMESHIPPED) FROM ORDERITEMS T1 WHERE T1.ORDERS_ID=?";
javax.naming.NamingException
- The javax.naming.NamingException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjava.sql.SQLException
- The java.sql.SQLException exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionpublic java.lang.String getAddressId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.ADDRESS_ID column of DB2 type BIGINT NULL.
The following is a description of this column:
The billing address, if known.
getAddressId
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Long getAddressIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.ADDRESS_ID column of DB2 type BIGINT NULL.
The following is a description of this column:
The billing address, if known.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getCurrency() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.CURRENCY column of DB2 type CHAR(10) NULL.
The following is a description of this column:
The Currency for monetary amounts associated with this Order. This is a currency code as per ISO 4217 standards.
getCurrency
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getDescription() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.DESCRIPTION column of DB2 type VARCHAR(254) NULL.
The following is a description of this column:
A mnemonic description of the Order, entered by the customer, suitable for display to the customer.
getDescription
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.sql.Timestamp getEstimatedOrPromisedShipDate() throws javax.naming.NamingException, javax.ejb.CreateException, java.sql.SQLException, java.rmi.RemoteException, javax.ejb.FinderException
Retreives the latest time any of the order items in the order are expected or promised (for placed orders) to be shipped.
javax.naming.NamingException
- The javax.naming.NamingException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjava.sql.SQLException
- The java.sql.SQLException exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionpublic java.sql.Timestamp getEstimatedShipDate() throws javax.naming.NamingException, javax.ejb.CreateException, java.sql.SQLException, java.rmi.RemoteException, javax.ejb.FinderException
Retreives the latest time any of the order items in the order are expected to be shipped.
javax.naming.NamingException
- The javax.naming.NamingException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjava.sql.SQLException
- The java.sql.SQLException exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionpublic java.lang.String getField1() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.FIELD1 column of DB2 type INTEGER NULL.
The following is a description of this column:
Customizable.
getField1
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Integer getField1InEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.FIELD1 column of DB2 type INTEGER NULL.
The following is a description of this column:
Customizable.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getField2() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.FIELD2 column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
Customizable.
getField2
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.math.BigDecimal getField2InEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.FIELD2 column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
Customizable.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getField3() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.FIELD3 column of DB2 type VARCHAR(254) NULL.
The following is a description of this column:
Customizable.
getField3
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Object getGroupingAttributeValue(java.lang.String astrAttributeName, GroupingContext aGroupContext) throws java.lang.Exception, java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Returns the value of a resource attribute - based on the attribute name and context.
Used by access control to determine if a resource falls within a resource group.
astrAttributeName
- java.lang.StringaGroupContext
- com.ibm.commerce.grouping.GroupingContextjava.lang.Exception
- The java.lang.Exception exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getLastUpdate() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.LASTUPDATE column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this Order was most recently updated.
getLastUpdate
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.sql.Timestamp getLastUpdateInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.LASTUPDATE column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this Order was most recently updated.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getLock() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.LOCKED column of DB2 type CHAR(1) NULL.
The following is a description of this column:
Reserved for IBM internal use.
getLock
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getMemberId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.MEMBER_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The customer of the Order.
getMemberId
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Long getMemberIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.MEMBER_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The customer of the Order.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getMerchantOrderId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.ORMORDER column of DB2 type CHAR(30) NULL.
The following is a description of this column:
A merchant assigned order reference number, if any.
getMerchantOrderId
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getOrderChannelTypeId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.ORDCHNLTYP_ID column of DB2 type BIGINT NULL.
The following is a description of this column:
Reserved for IBM internal use.
getOrderChannelTypeId
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Long getOrderChannelTypeIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.ORDCHNLTYP_ID column of DB2 type BIGINT NULL.
The following is a description of this column:
Reserved for IBM internal use.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getOrderId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.ORDERS_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
Generated unique key.
getOrderId
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Long getOrderIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.ORDERS_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
Generated unique key.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic OrderItemAccessBean[] getOrderItems() throws javax.naming.NamingException, java.rmi.RemoteException, javax.ejb.FinderException
Returns an array of OrderItemAccessBean objects representing order items in this order.
The SQL query used to fetch all the required rows from the
ORDERITEMS table is:
SELECT * FROM ORDERITEMS T1 WHERE (T1.ORDERS_ID = ?) order by T1.ADDRESS_ID, T1.ORDERITEMS_ID
javax.naming.NamingException
- The javax.naming.NamingException exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionpublic OrderItemAccessBean[] getOrderItemsForUpdate() throws javax.naming.NamingException, java.rmi.RemoteException, javax.ejb.FinderException
Returns an array of OrderItemAccessBean objects representing order items in this order.
The SQL query used to fetch all the required rows from the
ORDERITEMS table is:
SELECT * FROM ORDERITEMS T1 WHERE T1.ORDERS_ID = ? for update
javax.naming.NamingException
- The javax.naming.NamingException exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionpublic OrderItemAccessBean[] getOrderItemsSortedByOrderItemId() throws javax.naming.NamingException, java.rmi.RemoteException, javax.ejb.FinderException
Returns an array of OrderItemAccessBean objects sorted by order item id representing order items in this order.
The SQL query used to fetch all the required rows from the
ORDERITEMS table is:
SELECT * FROM ORDERITEMS T1 WHERE (T1.ORDERS_ID = ?) order by T1.ORDERITEMS_ID
javax.naming.NamingException
- The javax.naming.NamingException exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionpublic java.lang.String getOrganizationId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.ORGENTITY_ID column of DB2 type BIGINT NULL.
The following is a description of this column:
The immediate parent organization ID of the creator.
getOrganizationId
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Long getOrganizationIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.ORGENTITY_ID column of DB2 type BIGINT NULL.
The following is a description of this column:
The immediate parent organization ID of the creator.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Long getOwner() throws java.lang.Exception, java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Returns the member id of the owner; used by access control.
java.lang.Exception
- The java.lang.Exception exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getPlaceOrderTime() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.TIMEPLACED column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this Order was processed by the OrderProcess command.
getPlaceOrderTime
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.sql.Timestamp getPlaceOrderTimeInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.TIMEPLACED column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this Order was processed by the OrderProcess command.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.sql.Timestamp getPromisedShipDate() throws javax.naming.NamingException, javax.ejb.CreateException, java.sql.SQLException, java.rmi.RemoteException, javax.ejb.FinderException
Retreives the latest time that any of the order items in the order are promised to be shipped.
javax.naming.NamingException
- The javax.naming.NamingException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjava.sql.SQLException
- The java.sql.SQLException exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionpublic java.lang.String getProviderOrderNumber() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.PROVIDERORDERNUM column of DB2 type INTEGER NULL.
The following is a description of this column:
Reserved for IBM internal use.
getProviderOrderNumber
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Integer getProviderOrderNumberInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.PROVIDERORDERNUM column of DB2 type INTEGER NULL.
The following is a description of this column:
Reserved for IBM internal use.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getSequence() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.SEQUENCE column of DB2 type FLOAT NOT NULL.
The following is a description of this column:
May be used by a user interface to control the sequence of Orders in a list.
getSequence
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Double getSequenceInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.SEQUENCE column of DB2 type FLOAT NOT NULL.
The following is a description of this column:
May be used by a user interface to control the sequence of Orders in a list.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getShipAsComplete() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.SHIPASCOMPLETE column of DB2 type CHAR(1) NOT NULL.
The following is a description of this column:
Reserved for IBM internal use.
getShipAsComplete
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getStatus() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.STATUS column of DB2 type CHAR(1) NULL.
The following is a description of this column:
The order status. Refer to ORDERS table: details for more information.
getStatus
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getStoreEntityId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.STOREENT_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The StoreEntity the Order is part of. This is normally a Store unless STATUS is Q, in which case it is normally a StoreGroup.
getStoreEntityId
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Integer getStoreEntityIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.STOREENT_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The StoreEntity the Order is part of. This is normally a Store unless STATUS is Q, in which case it is normally a StoreGroup.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic SubOrderAccessBean[] getSubOrders() throws javax.naming.NamingException, java.rmi.RemoteException, javax.ejb.FinderException
Returns an array of SubOrderAccessBean objects representing suborders for this order.
javax.naming.NamingException
- The javax.naming.NamingException exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionpublic java.lang.String getTotalAdjustment() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.TOTALADJUSTMENT column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.TOTALADJUSTMENT for the OrderItems in the Order.
getTotalAdjustment
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.math.BigDecimal getTotalAdjustmentByDisplayLevel(java.lang.Integer aTotalAdjustmentByDisplayLevel) throws javax.naming.NamingException, javax.ejb.CreateException, java.sql.SQLException, java.rmi.RemoteException, javax.ejb.FinderException
IBM internal use only.
aTotalAdjustmentByDisplayLevel
- java.lang.Integerjavax.naming.NamingException
- The javax.naming.NamingException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjava.sql.SQLException
- The java.sql.SQLException exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionpublic java.math.BigDecimal getTotalAdjustmentInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.TOTALADJUSTMENT column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.TOTALADJUSTMENT for the OrderItems in the Order.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getTotalProductPrice() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.TOTALPRODUCT column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.TOTALPRODUCT for the OrderItems in the Order.
getTotalProductPrice
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.math.BigDecimal getTotalProductPriceInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.TOTALPRODUCT column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.TOTALPRODUCT for the OrderItems in the Order.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getTotalShippingCharge() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.TOTALSHIPPING column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.SHIPCHARGE for the OrderItems in the Order.
getTotalShippingCharge
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.math.BigDecimal getTotalShippingChargeInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.TOTALSHIPPING column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.SHIPCHARGE for the OrderItems in the Order.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getTotalShippingTax() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.TOTALTAXSHIPPING column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.SHIPTAXAMOUNT for the OrderItems in the Order.
getTotalShippingTax
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.math.BigDecimal getTotalShippingTaxInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.TOTALTAXSHIPPING column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.SHIPTAXAMOUNT for the OrderItems in the Order.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getTotalTax() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.TOTALTAX column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.TAXAMOUNT for the OrderItems in the Order.
getTotalTax
in interface OrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.math.BigDecimal getTotalTaxInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the ORDERS.TOTALTAX column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.TAXAMOUNT for the OrderItems in the Order.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic void refreshCopyHelper() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
Load data from the EJBObject.
refreshCopyHelper
in class com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic void setAddressId(java.lang.Long aAddressId)
This method provides access to the ORDERS.ADDRESS_ID column of DB2 type BIGINT NULL.
The following is a description of this column:
The billing address, if known.
aAddressId
- java.lang.Longpublic void setAddressId(java.lang.String aAddressId)
This method provides access to the ORDERS.ADDRESS_ID column of DB2 type BIGINT NULL.
The following is a description of this column:
The billing address, if known.
setAddressId
in interface OrderAccessBeanData
aAddressId
- java.lang.Stringpublic void setCurrency(java.lang.String aCurrency)
This method provides access to the ORDERS.CURRENCY column of DB2 type CHAR(10) NULL.
The following is a description of this column:
The Currency for monetary amounts associated with this Order. This is a currency code as per ISO 4217 standards.
setCurrency
in interface OrderAccessBeanData
aCurrency
- java.lang.Stringpublic void setDescription(java.lang.String aDescription)
This method provides access to the ORDERS.DESCRIPTION column of DB2 type VARCHAR(254) NULL.
The following is a description of this column:
A mnemonic description of the Order, entered by the customer, suitable for display to the customer.
setDescription
in interface OrderAccessBeanData
aDescription
- java.lang.Stringpublic void setField1(java.lang.Integer aField1)
This method provides access to the ORDERS.FIELD1 column of DB2 type INTEGER NULL.
The following is a description of this column:
Customizable.
aField1
- java.lang.Integerpublic void setField1(java.lang.String aField1)
This method provides access to the ORDERS.FIELD1 column of DB2 type INTEGER NULL.
The following is a description of this column:
Customizable.
setField1
in interface OrderAccessBeanData
aField1
- java.lang.Stringpublic void setField2(java.math.BigDecimal aField2)
This method provides access to the ORDERS.FIELD2 column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
Customizable.
aField2
- java.math.BigDecimalpublic void setField2(java.lang.String aField2)
This method provides access to the ORDERS.FIELD2 column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
Customizable.
setField2
in interface OrderAccessBeanData
aField2
- java.lang.Stringpublic void setField3(java.lang.String aField3)
This method provides access to the ORDERS.FIELD3 column of DB2 type VARCHAR(254) NULL.
The following is a description of this column:
Customizable.
setField3
in interface OrderAccessBeanData
aField3
- java.lang.Stringpublic void setInitKey_orderId(java.lang.String aInitKey_orderId)
Set the primary key for this object
aInitKey_orderId
- java.lang.Stringpublic void setLastUpdate(java.lang.String aLastUpdate)
This method provides access to the ORDERS.LASTUPDATE column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this Order was most recently updated.
setLastUpdate
in interface OrderAccessBeanData
aLastUpdate
- java.lang.Stringpublic void setLastUpdate(java.sql.Timestamp aLastUpdate)
This method provides access to the ORDERS.LASTUPDATE column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this Order was most recently updated.
aLastUpdate
- java.sql.Timestamppublic void setLock(java.lang.String aLock)
This method provides access to the ORDERS.LOCKED column of DB2 type CHAR(1) NULL.
The following is a description of this column:
Reserved for IBM internal use.
setLock
in interface OrderAccessBeanData
aLock
- java.lang.Stringpublic void setMemberId(java.lang.Long aMemberId)
This method provides access to the ORDERS.MEMBER_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The customer of the Order.
aMemberId
- java.lang.Longpublic void setMemberId(java.lang.String aMemberId)
This method provides access to the ORDERS.MEMBER_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The customer of the Order.
setMemberId
in interface OrderAccessBeanData
aMemberId
- java.lang.Stringpublic void setMerchantOrderId(java.lang.String aMerchantOrderId)
This method provides access to the ORDERS.ORMORDER column of DB2 type CHAR(30) NULL.
The following is a description of this column:
A merchant assigned order reference number, if any.
setMerchantOrderId
in interface OrderAccessBeanData
aMerchantOrderId
- java.lang.Stringpublic void setOrderChannelTypeId(java.lang.Long aOrderChannelTypeId)
This method provides access to the ORDERS.ORDCHNLTYP_ID column of DB2 type BIGINT NULL.
The following is a description of this column:
Reserved for IBM internal use.
aOrderChannelTypeId
- java.lang.Longpublic void setOrderChannelTypeId(java.lang.String aOrderChannelTypeId)
This method provides access to the ORDERS.ORDCHNLTYP_ID column of DB2 type BIGINT NULL.
The following is a description of this column:
Reserved for IBM internal use.
setOrderChannelTypeId
in interface OrderAccessBeanData
aOrderChannelTypeId
- java.lang.Stringpublic void setOrganizationId(java.lang.Long aOrganizationId)
This method provides access to the ORDERS.ORGENTITY_ID column of DB2 type BIGINT NULL.
The following is a description of this column:
The immediate parent organization ID of the creator.
aOrganizationId
- java.lang.Longpublic void setOrganizationId(java.lang.String aOrganizationId)
This method provides access to the ORDERS.ORGENTITY_ID column of DB2 type BIGINT NULL.
The following is a description of this column:
The immediate parent organization ID of the creator.
setOrganizationId
in interface OrderAccessBeanData
aOrganizationId
- java.lang.Stringpublic void setPlaceOrderTime(java.lang.String aPlaceOrderTime)
This method provides access to the ORDERS.TIMEPLACED column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this Order was processed by the OrderProcess command.
setPlaceOrderTime
in interface OrderAccessBeanData
aPlaceOrderTime
- java.lang.Stringpublic void setPlaceOrderTime(java.sql.Timestamp aPlaceOrderTime)
This method provides access to the ORDERS.TIMEPLACED column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this Order was processed by the OrderProcess command.
aPlaceOrderTime
- java.sql.Timestamppublic void setProviderOrderNumber(java.lang.Integer aProviderOrderNumber)
This method provides access to the ORDERS.PROVIDERORDERNUM column of DB2 type INTEGER NULL.
The following is a description of this column:
Reserved for IBM internal use.
aProviderOrderNumber
- java.lang.Integerpublic void setProviderOrderNumber(java.lang.String aProviderOrderNumber)
This method provides access to the ORDERS.PROVIDERORDERNUM column of DB2 type INTEGER NULL.
The following is a description of this column:
Reserved for IBM internal use.
setProviderOrderNumber
in interface OrderAccessBeanData
aProviderOrderNumber
- java.lang.Stringpublic void setSequence(java.lang.Double aSequence)
This method provides access to the ORDERS.SEQUENCE column of DB2 type FLOAT NOT NULL.
The following is a description of this column:
May be used by a user interface to control the sequence of Orders in a list.
aSequence
- java.lang.Doublepublic void setSequence(java.lang.String aSequence)
This method provides access to the ORDERS.SEQUENCE column of DB2 type FLOAT NOT NULL.
The following is a description of this column:
May be used by a user interface to control the sequence of Orders in a list.
setSequence
in interface OrderAccessBeanData
aSequence
- java.lang.Stringpublic void setShipAsComplete(java.lang.String aShipAsComplete)
This method provides access to the ORDERS.SHIPASCOMPLETE column of DB2 type CHAR(1) NOT NULL.
The following is a description of this column:
Reserved for IBM internal use.
setShipAsComplete
in interface OrderAccessBeanData
aShipAsComplete
- java.lang.Stringpublic void setStatus(java.lang.String aStatus)
This method provides access to the ORDERS.STATUS column of DB2 type CHAR(1) NULL.
The following is a description of this column:
The order status. Refer to ORDERS table: details for more information.
setStatus
in interface OrderAccessBeanData
aStatus
- java.lang.Stringpublic void setStoreEntityId(java.lang.Integer aStoreEntityId)
This method provides access to the ORDERS.STOREENT_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The StoreEntity the Order is part of. This is normally a Store unless STATUS is Q, in which case it is normally a StoreGroup.
aStoreEntityId
- java.lang.Integerpublic void setStoreEntityId(java.lang.String aStoreEntityId)
This method provides access to the ORDERS.STOREENT_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The StoreEntity the Order is part of. This is normally a Store unless STATUS is Q, in which case it is normally a StoreGroup.
setStoreEntityId
in interface OrderAccessBeanData
aStoreEntityId
- java.lang.Stringpublic void setTotalAdjustment(java.math.BigDecimal aTotalAdjustment)
This method provides access to the ORDERS.TOTALADJUSTMENT column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.TOTALADJUSTMENT for the OrderItems in the Order.
aTotalAdjustment
- java.math.BigDecimalpublic void setTotalAdjustment(java.lang.String aTotalAdjustment)
This method provides access to the ORDERS.TOTALADJUSTMENT column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.TOTALADJUSTMENT for the OrderItems in the Order.
setTotalAdjustment
in interface OrderAccessBeanData
aTotalAdjustment
- java.lang.Stringpublic void setTotalProductPrice(java.math.BigDecimal aTotalProductPrice)
This method provides access to the ORDERS.TOTALPRODUCT column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.TOTALPRODUCT for the OrderItems in the Order.
aTotalProductPrice
- java.math.BigDecimalpublic void setTotalProductPrice(java.lang.String aTotalProductPrice)
This method provides access to the ORDERS.TOTALPRODUCT column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.TOTALPRODUCT for the OrderItems in the Order.
setTotalProductPrice
in interface OrderAccessBeanData
aTotalProductPrice
- java.lang.Stringpublic void setTotalShippingCharge(java.math.BigDecimal aTotalShippingCharge)
This method provides access to the ORDERS.TOTALSHIPPING column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.SHIPCHARGE for the OrderItems in the Order.
aTotalShippingCharge
- java.math.BigDecimalpublic void setTotalShippingCharge(java.lang.String aTotalShippingCharge)
This method provides access to the ORDERS.TOTALSHIPPING column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.SHIPCHARGE for the OrderItems in the Order.
setTotalShippingCharge
in interface OrderAccessBeanData
aTotalShippingCharge
- java.lang.Stringpublic void setTotalShippingTax(java.math.BigDecimal aTotalShippingTax)
This method provides access to the ORDERS.TOTALTAXSHIPPING column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.SHIPTAXAMOUNT for the OrderItems in the Order.
aTotalShippingTax
- java.math.BigDecimalpublic void setTotalShippingTax(java.lang.String aTotalShippingTax)
This method provides access to the ORDERS.TOTALTAXSHIPPING column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.SHIPTAXAMOUNT for the OrderItems in the Order.
setTotalShippingTax
in interface OrderAccessBeanData
aTotalShippingTax
- java.lang.Stringpublic void setTotalTax(java.math.BigDecimal aTotalTax)
This method provides access to the ORDERS.TOTALTAX column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.TAXAMOUNT for the OrderItems in the Order.
aTotalTax
- java.math.BigDecimalpublic void setTotalTax(java.lang.String aTotalTax)
This method provides access to the ORDERS.TOTALTAX column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
The sum of ORDERITEMS.TAXAMOUNT for the OrderItems in the Order.
setTotalTax
in interface OrderAccessBeanData
aTotalTax
- java.lang.String
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |