UFN_LEDGERPREFERENCE_GETSEPARATOR

Returns the account segment separator.

Return

Return Type
nvarchar(1)

Definition

Copy


create function dbo.UFN_LEDGERPREFERENCE_GETSEPARATOR()
returns nvarchar(1)
with execute as caller
as begin
    return (select top 1 separator from dbo.LEDGERPREFERENCE)
end