UFN_BBWORKFLOWCATALOG_GETSPECXML
Returns the WorkflowSpec xml definition for the given WorkflowSpec catalog id.
Return
Return Type |
---|
xml |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@BBWORKFLOWCATALOGID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_BBWORKFLOWCATALOG_GETSPECXML(@BBWORKFLOWCATALOGID uniqueidentifier) returns xml
as
begin
declare @x xml;
select @x = SPECXML from dbo.BBWORKFLOWCATALOG WHERE ID = @BBWORKFLOWCATALOGID;
return @x;
end