USP_SHELL_GETFUNCTIONALAREATASKS
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @FUNCTIONALAREAID | uniqueidentifier | IN |
Definition
Copy
create procedure dbo.USP_SHELL_GETFUNCTIONALAREATASKS(@FUNCTIONALAREAID uniqueidentifier)
as
select TASKSPECXML
from dbo.TASKCATALOG
where FUNCTIONALAREAID = @FUNCTIONALAREAID
order by SEQUENCE, [NAME]