USP_DATALIST_ITINERARYITEM_EVENTITEM

Returns a list of scheduled event items for an itinerary.

Parameters

Parameter Parameter Type Mode Description
@ITINERARYID uniqueidentifier IN Input parameter indicating the context ID for the data list.

Definition

Copy


CREATE procedure dbo.USP_DATALIST_ITINERARYITEM_EVENTITEM(@ITINERARYID uniqueidentifier)
as
    set nocount on;

    exec dbo.USP_ITINERARY_CALENDARITEMS @ITINERARYID, 0 

  return 0;