USP_DATALIST_SHELBYEVENTPRICEIDFROMGUID

Returns the Shelby Event Price ID from the appropriate GUID.

Parameters

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

Definition

Copy


        CREATE procedure dbo.USP_DATALIST_SHELBYEVENTPRICEIDFROMGUID(@ID uniqueidentifier)
        as
            set nocount on;

            select top 1 ID
                from dbo.BBNCEVENTPRICEIDMAP
                where EVENTPRICEID = @ID