This content has been marked as final. 
    
Show                 3 replies
    
- 
        1. Re: finder methodcanobi Mar 11, 2003 3:07 AM (in response to qmqasim)Put that query in a select (eg. ejbSelectDistinctIsbn) method, not a finder, and it should work. 
- 
        2. Re: finder methodqmqasim Mar 11, 2003 4:08 AM (in response to qmqasim)Thanks for the suggestion. However, my understanding is that Select methods cannot be used within clients. 
 Perhaps, I could create a select method and use it within the bean to get a Collection of isbn.
- 
        3. Re: finder methodcanobi Mar 12, 2003 7:21 AM (in response to qmqasim)Yep, that's exactly right. Expose another method in your CMP bean that will call the ejbSelect and return a Collection as a result. 
 
    