V_QUERY_OUTPUTBUSINESSPROCESSES

Used to query business processes that return generate output.

Fields

Field Field Type Null Description
ID uniqueidentifier System record ID
NAME nvarchar(60) Name
DESCRIPTION nvarchar(1000) Description

Definition

Copy
/*
Generated by Blackbaud AppFx Platform
Date:  8/17/2011 2:20:41 PM
Assembly Version:  Blackbaud.AppFx.Platform.SqlClr, Version=2.91.1535.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE VIEW dbo.V_QUERY_OUTPUTBUSINESSPROCESSES AS



select ID, NAME, DESCRIPTION from dbo.BUSINESSPROCESSCATALOG 
where 
coalesce(BUSINESSPROCESSSPECXML.value('declare namespace bbfa="bb_appfx_businessprocess";/bbfa:BusinessProcessSpec[1]/@GeneratesOutput','bit'), 0) = 1
and 
coalesce(BUSINESSPROCESSSPECXML.value('declare namespace bbfa="bb_appfx_businessprocess";/bbfa:BusinessProcessSpec[1]/@AllowOutputTableRemoval','bit'), 0) = 1