USP_SPONSORSHIPOPPORTUNITY_PRELOAD_PROJECT

The load procedure used by the edit dataform template "Sponsorship Opportunity Project Add Form"

Parameters

Parameter Parameter Type Mode Description
@BASECURRENCYID uniqueidentifier INOUT Base currency ID
@CURRENTAPPUSERID uniqueidentifier IN Input parameter indicating the ID of the current user.

Definition

Copy


          CREATE procedure dbo.USP_SPONSORSHIPOPPORTUNITY_PRELOAD_PROJECT
          (
              @BASECURRENCYID uniqueidentifier = null output,
              @CURRENTAPPUSERID uniqueidentifier = null
          )
          as

          set nocount on;

          set @BASECURRENCYID = dbo.UFN_APPUSER_GETBASECURRENCY(@CURRENTAPPUSERID);