USP_SIMPLEDATALIST_WORKFLOWCATALOGSPECS

A list of all workflow specs that have been loaded into the catalog

Parameters

Parameter Parameter Type Mode Description
@CURRENTAPPUSERID uniqueidentifier IN Input parameter indicating the ID of the current user.

Definition

Copy


create procedure dbo.USP_SIMPLEDATALIST_WORKFLOWCATALOGSPECS 

@CURRENTAPPUSERID uniqueidentifier

as
    select 
        ID as VALUE
        NAME as LABEL,
    DESCRIPTION AS DESCRIPTION 
    from dbo.BBWORKFLOWCATALOG

    order by [NAME];