UFN_BUSINESSPROCESS_GETXMLDEFINITION

Return

Return Type
xml

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN

Definition

Copy


            create function dbo.UFN_BUSINESSPROCESS_GETXMLDEFINITION(@ID uniqueidentifier) returns xml
            with execute as caller
            as

            begin
                declare @value xml                
                select @value = BUSINESSPROCESSSPECXML from dbo.BUSINESSPROCESSCATALOG where ID = @ID
                return @value
            end