In datasource object of query (i.e query of report) there are two properties:
fetchmode
firstonly
I have a case like this:
datasource1 need to retrieve only one record.
datasource2 is after datasource1, and related to datasource1 with exists join.
Only if the relation between datasource1+datasource2 is ok, then data shall be retrieved,
but what if when query is selected - the first record fetch doesn't have data related for datasource2 (existjoin is false), but the second record (of datasource2) has related data.
I need to do the query, that the fetchmode or firstonly will influence after check the whole query as the example (and not fetching the datasource1, and then check for existence for datasource2), so I need to know - what is the major difference between 'fetchmode' and 'firstonly'.
Thanks :)
*This post is locked for comments
I have the same question (0)