Views [dbo].[GlAccountInformation_XLedger]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Created7:48:24 PM Saturday, February 7, 2026
Last Modified7:48:24 PM Saturday, February 7, 2026
Columns
Name
GlAccountJoinField
GLNumber
AccountingAccountFid
Description
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
/**
* Don't use this view directly but instead use the synonym GlAccountInformation_Synonym.
* GlAccountInformation_Synonym will either point to this view or to
* GlAccountInformation_Legacy if that is active.
*/

create view [dbo].[GlAccountInformation_XLedger]
(
    GlAccountJoinField,
    GLNumber,
    AccountingAccountFid,
    [Description]
)
as
select
    GlAccountJoinField = AccountingAccount.AccountingAccountId,
    GLNumber = AccountingAccount.Code,
    AccountingAccountFid = AccountingAccount.AccountingAccountId,
    [Description] = AccountingAccount.[Description]
from AccountingAccount
GO
GRANT SELECT ON  [dbo].[GlAccountInformation_XLedger] TO [MssExec]
GRANT INSERT ON  [dbo].[GlAccountInformation_XLedger] TO [MssExec]
GRANT DELETE ON  [dbo].[GlAccountInformation_XLedger] TO [MssExec]
GRANT UPDATE ON  [dbo].[GlAccountInformation_XLedger] TO [MssExec]
GO
Uses