HFEJB P406, in the box it says: You can't use dot notation to return a CMR field e.g.
SELECT m.director FROM...
is invalid if 'director' is CMR field.
But, I went thru Richard Monson-Haefel's
EJB book P237 where there is an example like this:
SELECT c.creditCard.creditCompany.address FROM Customer As c
'creditCard', 'creditCompany' and 'address' are all related CMR fields.
And the book says we can put CMR field in SELECT clause if it returns a single type.
So who is correct?