USP_DATAFORMTEMPLATE_ADD_TRACKFROMITINERARY_PRELOAD

The load procedure used by the edit dataform template "Track From Itinerary Add Data Form"

Parameters

Parameter Parameter Type Mode Description
@ITINERARYID uniqueidentifier IN Input parameter indicating the context ID for the record being added.
@ITINERARYNAME nvarchar(100) INOUT Itinerary name

Definition

Copy


                    CREATE procedure dbo.USP_DATAFORMTEMPLATE_ADD_TRACKFROMITINERARY_PRELOAD
                    (
                        @ITINERARYID uniqueidentifier,
                        @ITINERARYNAME nvarchar(100) = null output
                    )
                    as
                        set nocount on;

                        select @ITINERARYNAME = NAME from dbo.ITINERARY where ID = @ITINERARYID;

                        return 0;