USP_DATAFORMTEMPLATE_EDIT_WPBATCHSCREENINGPREPROCESS
The save procedure used by the edit dataform template "WealthPoint Batch Screening Preprocess Edit Form".
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN | The input ID parameter indicating the ID of the record being edited. |
@CHANGEAGENTID | uniqueidentifier | IN | Input parameter indicating the ID of the change agent invoking the procedure. |
@IDSETREGISTERID | uniqueidentifier | IN | Selection |
@USERNAME | nvarchar(100) | IN | Username |
@PASSWORD | nvarchar(255) | IN | Password |
Definition
Copy
CREATE procedure dbo.USP_DATAFORMTEMPLATE_EDIT_WPBATCHSCREENINGPREPROCESS (
@ID uniqueidentifier,
@CHANGEAGENTID uniqueidentifier = null,
@IDSETREGISTERID uniqueidentifier,
@USERNAME nvarchar(100),
@PASSWORD nvarchar(255)
)
as
set nocount on;
return 0;