USP_DATAFORMTEMPLATE_SAVE_REPORTMODELUSERACS
The save procedure used by the edit dataform template "Report Model Generator Use Record Access Security Edit Form".
Parameters
| Parameter | Parameter Type | Mode | Description | 
|---|---|---|---|
| @ID | uniqueidentifier | IN | The input ID parameter indicating the ID of the record being edited. | 
| @USERACS | bit | IN | Use record access security | 
Definition
 Copy 
                                    
CREATE procedure dbo.USP_DATAFORMTEMPLATE_SAVE_REPORTMODELUSERACS(@ID uniqueidentifier,
    @USERACS bit)
as
    set nocount on;
    update dbo.INSTALLATIONINFO set REPORTMODELUSERACS = @USERACS;