USP_RECORDOPERATION_RELATIONSHIPMANAGERDELETEPROMPT
Provides the prompt for the "Relationship Manager: Delete" record operation.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN | Represents information to be displayed in the record operation prompt. |
@NAME | nvarchar(154) | INOUT |
Definition
Copy
CREATE procedure dbo.USP_RECORDOPERATION_RELATIONSHIPMANAGERDELETEPROMPT
(
@ID uniqueidentifier,
@NAME nvarchar(154) output
)
as
set nocount on;
select
@NAME = dbo.UFN_CONSTITUENT_BUILDNAME(FUNDRAISERID)
from
dbo.RELATIONSHIPMANAGER
where
ID = @ID;
return 0;