Tables [dbo].[XLedgerItemCodeMapAccountType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)3
Created10:13:22 PM Sunday, March 30, 2025
Last Modified10:13:22 PM Sunday, March 30, 2025
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_XLedgerItemCodeMapAccountType: XLedgerItemCodeMapAccountTypeIdXLedgerItemCodeMapAccountTypeIdint4
No
1 - 1
Cluster Key IX_XLedgerItemCodeMapAccountType_MappingType: MappingTypeMappingTypevarchar(16)16
No
Indexes Indexes
NameColumnsUnique
Primary Key PK_XLedgerItemCodeMapAccountType: XLedgerItemCodeMapAccountTypeIdPK_XLedgerItemCodeMapAccountTypeXLedgerItemCodeMapAccountTypeId
Yes
Cluster Key IX_XLedgerItemCodeMapAccountType_MappingType: MappingTypeIX_XLedgerItemCodeMapAccountType_MappingTypeMappingType
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[XLedgerItemCodeMapAccountType]
(
[XLedgerItemCodeMapAccountTypeId] [int] NOT NULL IDENTITY(1, 1),
[MappingType] [varchar] (16) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[XLedgerItemCodeMapAccountType] ADD CONSTRAINT [PK_XLedgerItemCodeMapAccountType] PRIMARY KEY NONCLUSTERED  ([XLedgerItemCodeMapAccountTypeId]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[XLedgerItemCodeMapAccountType] ADD CONSTRAINT [IX_XLedgerItemCodeMapAccountType_MappingType] UNIQUE CLUSTERED  ([MappingType]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[XLedgerItemCodeMapAccountType] TO [MssExec]
GRANT INSERT ON  [dbo].[XLedgerItemCodeMapAccountType] TO [MssExec]
GRANT DELETE ON  [dbo].[XLedgerItemCodeMapAccountType] TO [MssExec]
GRANT UPDATE ON  [dbo].[XLedgerItemCodeMapAccountType] TO [MssExec]
GO
Uses
Used By