UFN_RE7INTEGRATION_RESYSTEMRECORDID_GETRPID
Return
| Return Type |
|---|
| uniqueidentifier |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @REID | int | IN |
Definition
Copy
create function dbo.UFN_RE7INTEGRATION_RESYSTEMRECORDID_GETRPID(@REID integer)
returns uniqueidentifier
with execute as caller
as begin
return (select top 1 ID from dbo.RE7INTEGRATIONCONSTITUENTMAP where RE7RECORDID = @REID)
end