UDF file in Model Glue
<cffunction name="getDateTime"> <cfreturn now() /></cffunction>
2)Then in my controller (in the onRequestStart):
<cfset variables.udf = createObject("component","pathTo.udf").init()><cfset arguments.event.setValue("udf", variables.udf)>
3)On my view page I have
<cfset udf = viewState.getValue('udf') />
Then to call a function
<cfoutput>#udf.getDateTime()#</cfoutput>