Tables [dbo].[XLedgerAccountingPeriodRange]
Properties
PropertyValue
HeapYes
Row Count (~)0
Created7:48:13 PM Saturday, February 7, 2026
Last Modified7:48:14 PM Saturday, February 7, 2026
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Primary Key PK_XLedgerAccountingPeriodRange: XLedgerAccountingPeriodRangeIdCheck Constraints CK_XLedgerAccountingPeriodRange_ID : ([XLedgerAccountingPeriodRangeId]=(1))XLedgerAccountingPeriodRangeIdint4
No
FromDatedate3
Yes
ToDatedate3
Yes
Indexes Indexes
NameColumnsUnique
Primary Key PK_XLedgerAccountingPeriodRange: XLedgerAccountingPeriodRangeIdPK_XLedgerAccountingPeriodRangeXLedgerAccountingPeriodRangeId
Yes
Check Constraints Check Constraints
NameOn ColumnConstraint
CK_XLedgerAccountingPeriodRange_IDXLedgerAccountingPeriodRangeId([XLedgerAccountingPeriodRangeId]=(1))
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[XLedgerAccountingPeriodRange]
(
[XLedgerAccountingPeriodRangeId] [int] NOT NULL,
[FromDate] [date] NULL,
[ToDate] [date] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[XLedgerAccountingPeriodRange] ADD CONSTRAINT [CK_XLedgerAccountingPeriodRange_ID] CHECK (([XLedgerAccountingPeriodRangeId]=(1)))
GO
ALTER TABLE [dbo].[XLedgerAccountingPeriodRange] ADD CONSTRAINT [PK_XLedgerAccountingPeriodRange] PRIMARY KEY NONCLUSTERED  ([XLedgerAccountingPeriodRangeId]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[XLedgerAccountingPeriodRange] TO [MssExec]
GRANT INSERT ON  [dbo].[XLedgerAccountingPeriodRange] TO [MssExec]
GRANT DELETE ON  [dbo].[XLedgerAccountingPeriodRange] TO [MssExec]
GRANT UPDATE ON  [dbo].[XLedgerAccountingPeriodRange] TO [MssExec]
GO
Uses
Used By