UFN_BATCHNUMBERINGSCHEME_ISGLOBALCOUNT
Return
Return Type |
---|
tinyint |
Definition
Copy
create function dbo.UFN_BATCHNUMBERINGSCHEME_ISGLOBALCOUNT()
returns TinyInt
with execute as caller
as begin
return (select count(*) from dbo.BATCHNUMBERINGSCHEME where ISGLOBAL = 1)
end