Possible Duplicate:
Is there a way to use a function on a Microsoft SQL Server Query without using “dbo.” before the function?
i have a problem with my user-defined function in SQL Server, when i try to executes it without dbo it shows error
'GetApplicationNumber' is not a recognized built-in function name.
SET @ApplicationNumber=dbo.GetApplicationNumber(SCOPE_IDENTITY()) --WORKING FINE
SET @ApplicationNumber=GetApplicationNumber(SCOPE_IDENTITY()) --SHOWING ERRORS