Introduction

In this tutorial, you learn how to create a custom attribute with a custom rule to stop carrying reconciliation compliance transactions into a period that the Close Date is in. This ends the carry-forward process for the transaction, so the user won't have to manually delete it in the period when it is no longer needed.

Background

In this tutorial, you perform the following tasks in Oracle Cloud EPM Account Reconciliation:

  1. Create a custom attribute with a calculation
  2. Apply the attribute to a format
  3. Create a custom rule in the format

Prerequisites

Before starting this tutorial, you should have:

  • A working knowledge of Oracle Cloud EPM Account Reconciliation.
  • Administrator access to an Oracle Cloud EPM Account Reconciliation application.

Creating an attribute

Create a custom attribute with a calculation definition.

  1. From the Account Reconciliation home page, click the Application card and then select Configuration.
  2. Launch Match Types
  3. Click the Attributes tab.
  4. Click Group Attributes
  5. Click the Calculated tab.
  6. Click Group Attributes
  7. Click the New icon to create an attribute.
  8. Click New
  9. On the Properties tab, name the attribute (Close Date Drop Off in this example), select Number for Type, and select Sum for Total.
  10. Enter a Name
  11. In the Calculation tab, set Calculation Type to Scripted and Display To User checked. In the Calculation Definition field , enter DATE_DIFF(EDATE({Close Date}, -1), {Period End Date}, 'DAYS'), and then click OK.
  12. Add member details
  13. The attribute is added.
  14. Enter a Name

    Note:

    There are two functions in this formula, DATE_DIFF and EDATE.

    The Date Difference or DATE_DIFF function calculates the difference between two dates in days. In this example, between the Close Date entered on the transactions and the Period End Date.

    The Add Month or EDATE function adds or subtracts months from the starting date. Because the formula is used in the Copy Transactions from Prior Reconciliation rule that populates a current reconciliation with transactions from a previous reconciliation, the function uses a negative value for months “-1” that brings the Close Date back a month. This way, if a transaction has the Close Date in July, the calculation returns a June date instead so that the Copy Transactions from Prior Reconciliation rule won't copy the transaction into July.

    The two functions are then combined to return the date difference of the Close Date (minus one month) and the Period End Date in days.

Creating a rule

Create a rule to stop carrying reconciliation compliance transactions into a period that the Close Date is in.

  1. From the Configuration page, click the Formats tab.
  2. Select Formats
  3. You can create a format or select an existing format to apply the rule. In this example, select the Accruals format.
  4. Select the format
  5. Click the Balance Explanations or Adjustments transaction tab that will have the new rule applied (Balance Explanations in this example).
  6. Select tab to apply rule
  7. Click Add to add the newly created attribute to the Transaction Detail.
  8. Click New Attribute
  9. Select the custom attribute that was created in the previous step (in this example, Close Date Drop Off), and then click the Add icon to assign roles that should not have view access to the attribute. Click OK.
  10. Select the attribute
  11. Expand the Rules bar, and then click the Add icon to create a rule.
  12. Expand the Rules bar and click Add
  13. Select the Copy Transactions from Prior Reconciliation rule.
  14. Select the rule
  15. Select the Filter tab.
  16. Select Filter tab
  17. Click Create Condition and create the following condition:

    Source: Transaction

    Attribute: Close Date Drop Off

    Operator: Less Than

    Value: 0

  18. Create condition

    Note:

    Whenever the calculation for Close Date Drop Off is a negative number for the previous reconciliation, that means the Close Date is greater than the current period end date, so it should be copied forward from the prior reconciliation to the current reconciliation.
  19. Click OK to close the New Rule dialog.
  20. Click OK to close the dialog
  21. The rule is added to the format.
  22. The rule is added to the format
  23. Save and Close the format. The rule will now be applied to all future reconciliations you create.
  24. Save and close the format