You can't!!!! You can only return one value with
<cfreturn...>
.
..
...
But of course there is nothing preventing that one value to
be a
structure or array contain two query record sets.
I.E.
<cfset var myReturn = strunctNew()>
...
<cfset myReturn.getCurrentProjects =
getCurrentProjects>
<!--- getCurrentProjects is scoped as a local variable
with VAR,
correct? --->
<cfset myReturn.getProjectRequestByStatus =
getProjectRequestByStatus>
<!--- getProjectRequest is scoped as a local variable with
Var, correct?--->
<cfreturn myReturn>