USP_DATAFORMTEMPLATE_ADD_BUSINESSPROCESSOUTPUTMAILMERGEMULTIPLELABEL
The save procedure used by the add dataform template "Business Process Output Mail Merge Multiple Label Files Add Form".
Parameters
| Parameter | Parameter Type | Mode | Description | 
|---|---|---|---|
| @ID | uniqueidentifier | INOUT | The output parameter indicating the ID of the record added. | 
| @BUSINESSPROCESSOUTPUTTEMPLATES | xml | IN | 
Definition
 Copy 
                                    
CREATE procedure dbo.[USP_DATAFORMTEMPLATE_ADD_BUSINESSPROCESSOUTPUTMAILMERGEMULTIPLELABEL]
(
  @ID uniqueidentifier = null output,
    @BUSINESSPROCESSOUTPUTTEMPLATES xml = null
)
as
  set nocount on;
  -- this is just a dummy form for UI purposes only
  -- just set the return ID so the platform thinks everything worked
  set @ID = newid();
  return 0;