UFN_FILE_FOLDER_IN_USE_BY_PART
Return
Return Type |
---|
int |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@FOLDERID | int | IN |
Definition
Copy
create function dbo.UFN_FILE_FOLDER_IN_USE_BY_PART(@FOLDERID int)
returns int
with execute as caller
as begin
declare @RET int = null;
select @RET = SITECONTENTID from dbo.[DOCUPLOADPART] where SITEFOLDERID = @FOLDERID
return @RET;
end