USP_DATAFORMTEMPLATE_EDITSAVE_TEAMFUNDRAISINGEVENTPERFORMANCEQUICKCOMPARISON

The save procedure used by the edit dataform template "Team Fundraising Event Performance Quick Comparison Edit".

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN The input ID parameter indicating the ID of the record being edited.
@QUICKCOMPEVENTS xml IN Quick comparison events

Definition

Copy


                    CREATE procedure dbo.USP_DATAFORMTEMPLATE_EDITSAVE_TEAMFUNDRAISINGEVENTPERFORMANCEQUICKCOMPARISON
                    (
                            @ID uniqueidentifier,
                            @QUICKCOMPEVENTS xml
                    )
                        as
                        begin                    

                            --Do nothing because this should never be saved to the database.


                            return 0
                        end