UFN_BUSINESSPROCESS_GETTSLONG

Return

Return Type
bigint

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN

Definition

Copy

                create function [dbo].[UFN_BUSINESSPROCESS_GETTSLONG](@ID uniqueidentifier) returns bigint
                as
                begin
                    declare @r bigint;
                    set @r=0;
                    select @r=TSLONG from dbo.BUSINESSPROCESSCATALOG where ID = @ID;
                    return @r;
                end