USP_DATAFORMTEMPLATE_PRELOAD_ADD_GRANT

The load procedure used by the edit dataform template "Grant Add Form"

Parameters

Parameter Parameter Type Mode Description
@GRANTORID uniqueidentifier IN Input parameter indicating the context ID for the record being added.
@CURRENTAPPUSERID uniqueidentifier IN Input parameter indicating the ID of the current user.
@TRANSACTIONCURRENCYID uniqueidentifier INOUT Currency

Definition

Copy


                    create procedure dbo.USP_DATAFORMTEMPLATE_PRELOAD_ADD_GRANT
                    (
                        @GRANTORID uniqueidentifier,
                        @CURRENTAPPUSERID uniqueidentifier,
                        @TRANSACTIONCURRENCYID uniqueidentifier = null output
                    )
                    as
                        set nocount on;
                        set @TRANSACTIONCURRENCYID = dbo.UFN_APPUSER_GETBASECURRENCY(@CURRENTAPPUSERID);

                        return 0;