USP_SIMPLELIST_AMPROIMPORT_EVENTPRICE

Returns registration options for use in AuctionMaestro Pro import batches.

Parameters

Parameter Parameter Type Mode Description
@EVENTID uniqueidentifier IN

Definition

Copy


                create procedure dbo.USP_SIMPLELIST_AMPROIMPORT_EVENTPRICE
                (
                    @EVENTID uniqueidentifier = null
                )
                as
                set nocount on;

                select
                    EVENTPRICE.ID as [VALUE],
                    dbo.UFN_AMPROIMPORT_EVENTPRICE_TRANSLATION(EVENTPRICE.ID) as [LABEL]
                from dbo.EVENTPRICE
                where EVENTID = @EVENTID;