How to you refer to a function in another function in a cfc
HI,
How to you refer to a function in another function in a cfc like so
<cffunction name="getApplicationConstants" access="remote" returntype="struct">
<cfset flash.result.users = [the result from the getUsers function]>
<cfreturn flash.result>
</cffunction>
<cffunction name="getUsers" access="remote" returntype="query">
<cfquery name="q" datasource="#datasource#">
select c.*
from USERS as c WHERE looksLikeUserIsDeleted = 'False'
AND userPrivileges = 1
ORDER BY fullName
</cfquery>
<cfset flash.result = q>
<cfreturn flash.result>
</cffunction>
