USP_IDMAPPER_GROUPMEMBER_TO_CONSTITUENT

Parameters

Parameter Parameter Type Mode Description
@SOURCEID uniqueidentifier IN
@TARGETID uniqueidentifier INOUT

Definition

Copy


            CREATE procedure  dbo.USP_IDMAPPER_GROUPMEMBER_TO_CONSTITUENT(@SOURCEID uniqueidentifier,@TARGETID uniqueidentifier output)
            as
                set nocount on;

                select
                    @TARGETID=GROUPID
                from
                    dbo.GROUPMEMBER
                where
                    ID=@SOURCEID;

                return 0;