USP_IDMAPPER_APPUSER_TO_CONSTITUENT
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@SOURCEID | uniqueidentifier | IN | |
@TARGETID | uniqueidentifier | INOUT |
Definition
Copy
CREATE procedure dbo.USP_IDMAPPER_APPUSER_TO_CONSTITUENT(@SOURCEID uniqueidentifier,@TARGETID uniqueidentifier output)
as
set nocount on;
select
@TARGETID=CONSTITUENTID
from
dbo.APPUSER
where
ID=@SOURCEID;
return 0;