CMR Error
drear friend i need help for container manage relationship in java studio enterprise edition 8.0
i have following table on mssql server 2000
customers(table) {
-> customerid columns (primary key),
-> firstname,
-> lastname,
-> address
}
orders(table) {
->orderid columns (primary key),
->date,
->remark,
->discount,
->paymenttype
->customerid (foreign key -> customers.customerid)
}
then i created two container manage entity beans for this two table,
added cmp fields, add relationship to them.
then after i add findAll finder method into the both entity bean.
when i use this entity bean via session bean in jsp page create intance of that entity and call findAll method of the order bean.
it throws SQLException say that can't find CUSTOMERS_CUSTOMERID
in order.

