Tables [dbo].[XLedgerAccountingPeriod]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)0
Created10:13:22 PM Sunday, March 30, 2025
Last Modified10:13:22 PM Sunday, March 30, 2025
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
XLedgerAccountingPeriodIdint4
No
1 - 1
ExternalDbIdint4
No
FromDatedate3
No
ToDatedate3
No
FiscalYearint4
No
FiscalPeriodint4
No
Codenvarchar(32)64
No
Openbit1
No
Descriptionnvarchar(32)64
No
CreatedOndatetimeoffset10
No
LastImportedOndatetimeoffset10
No
OpenStatusChangedOndatetimeoffset10
No
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[XLedgerAccountingPeriod]
(
[XLedgerAccountingPeriodId] [int] NOT NULL IDENTITY(1, 1),
[ExternalDbId] [int] NOT NULL,
[FromDate] [date] NOT NULL,
[ToDate] [date] NOT NULL,
[FiscalYear] [int] NOT NULL,
[FiscalPeriod] [int] NOT NULL,
[Code] [nvarchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[Open] [bit] NOT NULL,
[Description] [nvarchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[CreatedOn] [datetimeoffset] NOT NULL,
[LastImportedOn] [datetimeoffset] NOT NULL,
[OpenStatusChangedOn] [datetimeoffset] NOT NULL
) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[XLedgerAccountingPeriod] TO [MssExec]
GRANT INSERT ON  [dbo].[XLedgerAccountingPeriod] TO [MssExec]
GRANT DELETE ON  [dbo].[XLedgerAccountingPeriod] TO [MssExec]
GRANT UPDATE ON  [dbo].[XLedgerAccountingPeriod] TO [MssExec]
GO
Uses
Used By