USP_DATAFORMTEMPLATE_ADD_COMBINATIONAVAILABILITY_PRELOAD

The load procedure used by the edit dataform template "Combination Availability Add Data Form"

Parameters

Parameter Parameter Type Mode Description
@COMBINATIONID uniqueidentifier IN Input parameter indicating the context ID for the record being added.
@CANBEONLINE bit INOUT

Definition

Copy

CREATE procedure dbo.USP_DATAFORMTEMPLATE_ADD_COMBINATIONAVAILABILITY_PRELOAD
(
    @COMBINATIONID uniqueidentifier,
    @CANBEONLINE bit = null output
)
as
    set nocount on;

    set @CANBEONLINE = dbo.UFN_COMBINATION_CANBEONLINE(@COMBINATIONID);

    return 0;