AllowAdjFromChildren

Specifies if journal postings from children are allowed for the specified entity or parent member. This function can be used in these types of rules:

  • Calculation

  • Translation

  • Consolidation

  • Allocation

    Note:

    A member is a child if it is one level directly below a member in a tree hierarchy.

Syntax

HS.Entity.AllowAdjFromChildren("Entity")
HS.Entity.AllowAdjFromChildren(" ")
HS.Parent.AllowAdjFromChildren("Entity")
HS.Parent.AllowAdjFromChildren(" ")

where Entity is the name of a valid Entity or Parent member.

Use a blank string (" ") to apply this function to the current entity or parent.

Return Value

A Boolean expression that is True if journal postings from children are permitted for the specified entity, False if journal postings from children are not permitted.

Example

In this example, if journal postings from children of France are allowed, then statements between the If…Then and End If statements are executed.

If HS.Entity.AllowAdjFromChildren("France") = TRUE then
    ...
End If