USP_DATAFORMTEMPLATE_ADD_BUSINESSPROCESSEXPORTGROUPS

The save procedure used by the add dataform template "Business Process Export Group Files Add Form".

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier INOUT The output parameter indicating the ID of the record added.
@OUTPUTPATH nvarchar(2047) IN Output path
@COLUMNNAME nvarchar(255) IN Group by
@GROUPS nvarchar(max) IN Groups
@CHANGEAGENTID uniqueidentifier IN Input parameter indicating the ID of the change agent invoking the procedure.

Definition

Copy


CREATE procedure dbo.[USP_DATAFORMTEMPLATE_ADD_BUSINESSPROCESSEXPORTGROUPS]
(
  @ID uniqueidentifier = null output,
  @OUTPUTPATH nvarchar(2047),
  @COLUMNNAME nvarchar(255),
    @GROUPS nvarchar(max) = null,
  @CHANGEAGENTID uniqueidentifier = 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;