Interface IGLRollup
The system entity for a gl rollup, which allows reporting across the whole gl for a given IEntitySet
See https://help.lemonedge.com/help/enterprise-data-tools/reporting/gl-rollups/intro.html for more information
Inherited Members
Namespace: LemonEdge.API.Entities.FinancialServices.Accounting
Assembly: LemonEdge.API.Entities.FinancialServices.dll
Syntax
[EntityDefinition(EntityID.GLRollup, "dbo.LT_GLRollups", "GLRollup", IsStandingDataEntity = false, LabelColumn = "Name", HelpURL = "help/enterprise-data-tools/reporting/gl-rollups/intro.html")]
[DefaultEntityIcon(ImageType.Sigma)]
public interface IGLRollup : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties, ISetCopier
Properties
Description
A user friendly description of this rollup.
Declaration
[EntityProperty(SQLType.NVarChar, 2000, true)]
[EntityDescription("A user friendly description of this rollup.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
GLClassificationID
Links to IGLClassification. The gl classification this report across the gl
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.GLClassification, "ID", SingleJoinType.One, "GL Classification", "GL Rollups", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = false)]
[RequiredNoDefaultIDValidation]
Guid GLClassificationID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
Name
[Key] The unique user friendly name of this GL Rollup
Declaration
[EntityProperty(SQLType.NVarChar, 500, false)]
[EntityKeyProperty]
[EntityDescription("The unique name of this gl rollup.")]
[Unique]
[Required]
string Name { get; set; }
Property Value
Type | Description |
---|---|
string |