USP_DATAFORMTEMPLATE_ADD_ACQUISITIONLISTMEMBER

The save procedure used by the add dataform template "Acquisition List Member Add Form".

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier INOUT The output parameter indicating the ID of the record added.
@CHANGEAGENTID uniqueidentifier IN Input parameter indicating the ID of the change agent invoking the procedure.
@FINDERNUMBER bigint IN

Definition

Copy


                    CREATE procedure dbo.USP_DATAFORMTEMPLATE_ADD_ACQUISITIONLISTMEMBER
                    (
                        @ID uniqueidentifier = null output,
                        @CHANGEAGENTID uniqueidentifier = null,
                        @FINDERNUMBER bigint
                    )
                    as
                        set nocount on;

                        begin try
                            exec dbo.USP_ACQUISITIONLIST_ADDMEMBER @ID output,@CHANGEAGENTID,@FINDERNUMBER;
                        end try

                        begin catch
                            exec dbo.USP_RAISE_ERROR
                            return 1;
                        end catch

                        return 0;