Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

Warning

This is old version. New one is here: /wiki/spaces/flexdev/pages/8897791133

What?

When making a new account it is possible to add different account options:

  • To validate filtering by object, item, customer classes (based on different pricing plans)
  • Add features: Loyal customers, Active customers

How?

Enable item / customer class and object

...

Partneraccounts should always have all of the options enabled at the start

Availible options

  • update_active_customers - import row counts active clients. True/false option which will be availible in the propertyCustomers dimension. Example:

    Code Block
    Count(Filter([Customer].[Customer].Members, [Customer].getBoolean('Active')))
    
  • update_loyal_customers - at the time of import loyal clients will be counted. It will become a true/false option and after thet availible in the propertyCustomers dimension. (A loyal customer has at least 3 invoices in the last 6 months, but not in the same month) Example:

    Code Block
    Count(Filter([Customer].[Customer].Members, [Customer].getBoolean('Loyal')))
    
  • enable_item_class - enables classification of articles (has an impact on import and calculation time)
  • enable_objects - enables object accounting (has an impact on import and calculation time)

...