I'm unable to get the definition of a function when putting my cursor on the function name when used has another function parameter
Here is my 2 functions definition
CREATE FUNCTION [getClassified](@Path varchar(260), @FullPath varchar(260), @Call_ID int)
RETURNS varchar(260)
FUNCTION [getValidAttachment](@Call_ID int, @NetworkPath varchar(260), @Path varchar(260))
RETURNS varchar(260)
If I write something like this
DECLARE @Path varchar(260)
SET @Path = dbo.getClassified(@NetworkPath, dbo.getValidAttachment(@Call_ID, @NetworkPath, @NetworkPath), @Call_ID)
so the result of getValidAttachment is a parameter of getClassified and If I try to get the definition of getValidAttachment it's not possible because he show the getClassified parameters and not the getValidAttachment definition.
Thanks
Here is my 2 functions definition
CREATE FUNCTION [getClassified](@Path varchar(260), @FullPath varchar(260), @Call_ID int)
RETURNS varchar(260)
FUNCTION [getValidAttachment](@Call_ID int, @NetworkPath varchar(260), @Path varchar(260))
RETURNS varchar(260)
If I write something like this
DECLARE @Path varchar(260)
SET @Path = dbo.getClassified(@NetworkPath, dbo.getValidAttachment(@Call_ID, @NetworkPath, @NetworkPath), @Call_ID)
so the result of getValidAttachment is a parameter of getClassified and If I try to get the definition of getValidAttachment it's not possible because he show the getClassified parameters and not the getValidAttachment definition.
Thanks