AllowAdjs

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

  • Calculation

  • Translation

  • Consolidation

  • Allocation

Syntax

HS.Entity.AllowAdjs("Entity")
HS.Entity.AllowAdjs(" ")
HS.Parent.AllowAdjs("Entity")
HS.Parent.AllowAdjs(" ")

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 are permitted for the specified entity, False if journal postings are not permitted.

Example

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

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