USP_DATALIST_TRACKITEM_CUSTOMITEM
Returns a list of custom items for a track.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@TRACKID | uniqueidentifier | IN | Input parameter indicating the context ID for the data list. |
Definition
Copy
create procedure dbo.USP_DATALIST_TRACKITEM_CUSTOMITEM
(
@TRACKID uniqueidentifier
)
as
set nocount on;
exec dbo. USP_TRACK_CALENDARITEMS @TRACKID, 2
return 0;