In MS SQL, its under a database --> Programmability -->
Functions --> Scalar-valued Functions.
I believe I found the solution, I can access the function via
cfquery instead of cfstoredproc.
Example:
SELECT test, dbo.function_test(param1,param2) as myTest
FROM TestTable
WHERE test = 1