USP_EVENTADD_GETLOAD
Returns the load values for the event add form
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @PROGRAMID | uniqueidentifier | IN |
Definition
Copy
create procedure dbo.USP_EVENTADD_GETLOAD
(
@PROGRAMID uniqueidentifier
)
as
set nocount on;
select
[NAME],
[DESCRIPTION]
from
dbo.PROGRAM
where
ID=@PROGRAMID;
return 0;