Search Results for

    Show / Hide Table of Contents

    Interface IGLRollupHeader

    The system entity for a gl rollup header, which belongs to a IGLRollup definition

    See https://help.lemonedge.com/help/enterprise-data-tools/reporting/gl-rollups/header-view.html for more information

    Inherited Members
    IBaseEntity.GetLabel(string)
    IBaseEntity.SetLabel(string, string)
    IBaseEntity.SetSilentLabel(string, string)
    IBaseEntity.AccountID
    IBaseEntity.ID
    IBaseEntity.LastUpdated
    IBaseEntity.ModifiedByUserID
    IBaseEntity.CanvasID
    IBaseEntity.AlgorithmStepID
    IBaseEntity.SafeID
    IEquatable<IBaseEntity>.Equals(IBaseEntity)
    INotifyPropertyChanged.PropertyChanged
    INotifyPropertyChanging.PropertyChanging
    ICloneableAsync.Clone(object)
    ICloneableAsync.CopyFromSource(object)
    ICanTrackProperties.HasTrackedPropertyChanged(string)
    ICanTrackProperties.OriginalTrackedPropertyValue(string)
    ICanTrackProperties.OriginalTrackedPropertyValue<T>(string)
    ICanTrackProperties.ClearTrackedOriginalValues()
    ICanTrackProperties.GetAllOriginalTrackedPropertyValues()
    Namespace: LemonEdge.API.Entities.FinancialServices.Accounting
    Assembly: LemonEdge.API.Entities.FinancialServices.dll
    Syntax
    [EntityDefinition(EntityID.GLRollupHeader, "dbo.LT_GLRollupHeaders", "GLRollupHeader", IsStandingDataEntity = false, LabelColumn = "Name")]
    [DefaultEntityIcon(ImageType.Sigma)]
    [MultipleUnique(new string[] { "GLRollupID", "Name" }, AllowNullOrEmpty = false)]
    public interface IGLRollupHeader : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties

    Properties

    GLRollupID

    [Key] Links to IGLRollup. The parent gl rollup this header belongs to

    Declaration
    [EntityProperty(SQLType.UniqueIdentifier, false)]
    [EntityRelationship(EntityID.GLRollup, "ID", SingleJoinType.One, "GL Rollup", "Headers", DeleteWithRelationship = true, PartOfParentSet = true, LinkToItemInSet = false, InheritPermissions = true)]
    [RequiredNoDefaultIDValidation]
    [EntityKeyProperty]
    Guid GLRollupID { get; set; }
    Property Value
    Type Description
    Guid

    Index

    Indicates the order this header appears in the rollup or its parent header

    Declaration
    [EntityProperty(SQLType.SmallInt, false)]
    [EntityDescription("Indicates the order this header appears in the rollup.")]
    [EntitySequence]
    short Index { get; set; }
    Property Value
    Type Description
    short

    Name

    [Key] The unique name for this GL Rollup Header.

    This is the name that will appear on your report containing all the specified balances.

    Declaration
    [EntityProperty(SQLType.NVarChar, 500, false)]
    [EntityKeyProperty]
    [EntityDescription("The name of this gl rollup header.")]
    [Required]
    string Name { get; set; }
    Property Value
    Type Description
    string

    ParentHeaderID

    Links to IGLRollupHeader. The parent header this header is a child of unless it is a root header directly a child of the gl rollup

    Declaration
    [EntityProperty(SQLType.UniqueIdentifier, true)]
    [EntitySelfRelationship("ID", SingleJoinType.ZeroToOne, "IGLRollupHeader", "Headers", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = false, PreventAutoConstraint = true)]
    Guid? ParentHeaderID { get; set; }
    Property Value
    Type Description
    Guid?

    Extension Methods

    LinqExtensions.AsArray<T>(T)
    LinqExtensions.ToArrayOfOne<T>(T)
    LinqExtensions.ToListOfOne<T>(T)
    MiscExtensions.SetIfNotEqual<T, TP>(T, Expression<Func<T, TP>>, TP)
    WeakReferenceExtensions.WeakReference(object)
    SQLExtensions.ToSQLValue(object, bool)
    ReflectionExtensions.ClearEventInvocations(object, string)
    StringExtensions.ToCSVFormatString(object, Type)

    See Also

    IGLRollup
    In this article
    Back to top © LemonEdge Technologies. All rights reserved.