USP_DATALIST_RESERVATION_DUEDATE
Lists due dates belonging to a reservation.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@RESERVATIONID | uniqueidentifier | IN | Input parameter indicating the context ID for the data list. |
Definition
Copy
CREATE procedure dbo.USP_DATALIST_RESERVATION_DUEDATE
(
@RESERVATIONID uniqueidentifier
)
as
set nocount on;
select ID
from dbo.RESERVATION
where ID = @RESERVATIONID