UFN_PROGRAMSTAFFRESOURCE_GETRESOURCES
Returns the staff resources for a program.
Return
| Return Type |
|---|
| table |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @PROGRAMID | uniqueidentifier | IN |
Definition
Copy
CREATE function dbo.UFN_PROGRAMSTAFFRESOURCE_GETRESOURCES
(
@PROGRAMID uniqueidentifier
)
returns table
as return
select ID,
VOLUNTEERTYPEID,
QUANTITYNEEDED,
FILLEDBYCODE
from PROGRAMSTAFFRESOURCE
where PROGRAMID = @PROGRAMID