USP_DATAFORMTEMPLATE_VIEW_BULKASSIGNSOLICITORS

The load procedure used by the view dataform template "Bulk Assign Prospects View Form"

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN The input ID parameter used to load the fields defined on the form.
@DATALOADED bit INOUT Output parameter indicating whether or not data was actually loaded.
@ASSIGNMENTS xml INOUT Assignments

Definition

Copy

                    CREATE procedure dbo.USP_DATAFORMTEMPLATE_VIEW_BULKASSIGNSOLICITORS(
                        @ID uniqueidentifier,
                        @DATALOADED bit = 0 output,
                        @ASSIGNMENTS xml = null output
                    )
                    as

                        set nocount on;

                        -- this load spec does nothing
                        set @DATALOADED = 1;

                        set @ASSIGNMENTS = dbo.UFN_GETPROSPECTASSIGNMENTSXML(@ID)

                        return 0;