USP_DATAFORMTEMPLATE_ADD_REGISTRANT_PRELOAD

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

Parameters

Parameter Parameter Type Mode Description
@EVENTID uniqueidentifier IN Input parameter indicating the context ID for the record being added.
@PRICES xml INOUT

Definition

Copy


                    CREATE procedure dbo.USP_DATAFORMTEMPLATE_ADD_REGISTRANT_PRELOAD
                    (
                        @EVENTID uniqueidentifier,
                        @PRICES xml = null output
                    )
                    as
                        set nocount on;

                        set @PRICES = dbo.UFN_EVENTPRICE_GETPRICES_TOITEMLISTXML(@EVENTID);

                        return 0;