USP_DATAFORMTEMPLATE_VIEW_DAILYSALEITEMCONFIGURATIONLAYOUT

The load procedure used by the view dataform template "Daily Sale Item Configuration Layout"

Parameters

Parameter Parameter Type Mode Description
@DATALOADED bit INOUT Output parameter indicating whether or not data was actually loaded.
@QUICKBUTTONS xml INOUT QUICKBUTTONS

Definition

Copy


                CREATE procedure dbo.USP_DATAFORMTEMPLATE_VIEW_DAILYSALEITEMCONFIGURATIONLAYOUT
                (
                    @DATALOADED bit = 0 output,
                    @QUICKBUTTONS xml = null output
                )
                as
                    set nocount on;
                    set @DATALOADED = 1;
                return 0;