IsICP

Determines if the current Account or Entity dimension member or a specified account or entity member is an intercompany partner (ICP). This function can be used in these types of rules:

  • Calculation

  • Translation

  • Consolidation

  • Allocation

Syntax

HS.<Object>.IsICP("Element")
HS.<Object>.IsICP("")

Note:

Use a blank string ("") to apply this function to the current member.

Table 11-34 Syntax for IsICP Function

Parameter Description

<Object>

One of these object keywords:

  • Account

  • Entity

Element

Depending on the object selected, name of a valid member of the Account or Entity dimension.

  • Account

  • Entity

Return Value

A Boolean expression that is True if the account or entity member is an intercompany partner; False if the account or entity member is not an intercompany partner.

Example

In this example, if the Sales account is an intercompany partner, then statements between the If...Then and End If lines are executed.

If HS.Account.IsICP("Sales") = TRUE Then
  ...
End If