USP_DATAFORMTEMPALTE_PRELOAD_SYSTEMROLECOPY

The load procedure used by the edit dataform template "System Role Copy Add Form"

Parameters

Parameter Parameter Type Mode Description
@SYSTEMROLEID uniqueidentifier IN Input parameter indicating the context ID for the record being added.
@SOURCEROLENAME nvarchar(255) INOUT Source role name

Definition

Copy


                    CREATE procedure dbo.USP_DATAFORMTEMPALTE_PRELOAD_SYSTEMROLECOPY
                    (
                        @SYSTEMROLEID uniqueidentifier,
                        @SOURCEROLENAME nvarchar(255) = null output
                    )
                    as
                        set nocount on;

                        select
                            @SOURCEROLENAME = NAME
                        from
                            dbo.SYSTEMROLE
                        where ID = @SYSTEMROLEID;