UFN_FAFEVENT_GETEVENTLABEL
Get FAF event label
Return
Return Type |
---|
table |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@EVENTID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_FAFEVENT_GETEVENTLABEL(@EVENTID uniqueidentifier)
returns table
as return
select
'00000000-0000-0000-0000-000000000000' as ID,
ID as COPYSOURCEID,
@EVENTID as COPYBATCHGUID,
LABELNAME,
LABELVALUE
from
dbo.EVENTLABEL
where
EVENTID = @EVENTID