UFN_ATTRIBUTETOSIMPLELISTSPEC_GETID
Return
Return Type |
---|
uniqueidentifier |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@LOCALID | int | IN | |
@RECORDTYPE | int | IN |
Definition
Copy
create function dbo.[UFN_ATTRIBUTETOSIMPLELISTSPEC_GETID]
(
@LOCALID int,
@RECORDTYPE int
)
returns uniqueidentifier
as
begin
return (select [SIMPLELISTSPEC_LOCALID] from [RE7].[ATTRIBUTETOSIMPLELISTSPEC] where [LOCALID] = @LOCALID and [TYPE_LOCALID] = @RECORDTYPE);
end