HomeDev GuideAPI Reference
Dev GuideAPI ReferenceUser GuideGitHubNuGetDev CommunitySubmit a ticketLog In
GitHubNuGetDev CommunitySubmit a ticket

Collect data for reports

Describes how to collect and access data for order reports in Optimizely Customized Commerce 13.

Collected commerce data can be accessed under Reports in the Optimizely Customized Commerce user interface. The data is made available for export to be consumed by other applications. Data can be collected for purchase orders and subscriptions. The Sales by Day report in Commerce Manager also uses the data.

The collect data feature provides raw data for created orders and includes:

  • Ability to specify time periods for which you want the data (for example, all orders created in the past 90 days) in the web.config.
  • Ability to collect data when an order is placed or an existing order is modified.
  • Scheduled jobs  that collect the raw data and exports it to a compressed zip file, which contains a csv file with the data.
  • The Reports menu, which displays links for downloading exported zip files.
  • Permissions that control access to the Reports menu.

Set time range for the report

You determine the time range for the reports in the web.config file, under .

<add key="episerver:commerce.ReportingTimeRanges" value="30;60;90;120"/>

Values are numbers of days prior to the date that you run the Collect Report Data Scheduled job. Start and end dates are included in the order dates. For each value, the job creates one corresponding CSV file.

The above example means that the Collect Report Data scheduled job generates 4 CSV files: one for all orders created within the last 30 days, another for orders created within the last 60 days, and so on.

Each CSV file is compressed into a .zip file.

In the example below, the report compiles one report containing order data for the past year (365 days).

<add key="episerver:commerce.ReportingTimeRanges" value="365" />

📘

Note

If the web.config has no settings for episerver:commerce.ReportingTimeRanges, the default value is 90.

Collect report data

Use a scheduled job

You can use scheduled jobs in the Admin view to collect data for the reports. For example, to collect order data, run the scheduled job Collect Order Data for Reports collects order data in the background.

Like other scheduled jobs, you can run this manually or at predetermined time intervals.

The scheduled job Collect Subscription Data for Reports collects data for subscriptions, see Collecting subscription data.

Use order events

Order data can also be collected whenever an order is placed or an existing order is modified by adding, updating, or removing line items. Use the following web.config setting, which occurs under , to determine whether to collect order data when these order events occur.

<add key="episerver:commerce.EnableEventDrivenOrderReporting" value="true"/>

📘

Note

If no value is set for episerver:commerce.EnableEventDrivenOrderReporting, order data is collected. In other words, the default value is True.

Permissions for reports

Only users with following roles can access the Reports menu in the Customized Commerce user interface.

  • CommerceAdmins
  • ReportManagers

Access collected data

After collecting the report data, a link to the exported .zip files appears under Reports. Click the link to download the data.

Data format

Collected report data is presented in a comma-separated value (CSV) format.
Open full-size image in new window

Order data reports

This version provides the following information for each order created during the specified time range in LineItem level.

  • LineItemID
  • LineItemCode
  • DisplayName
  • PlacedPrice
  • Quantity
  • ExtendedPrice
  • EntryDiscountAmount: The line item's discount amount
  • SalesTax
  • Currency
  • OrderGroupId
  • OrderNumber
  • CustomerID
  • CustomerName
  • MarketId
  • OrderCreated: The order creation date
  • AdditionalValues - see Add properties to order data.

Add properties to order data

If default values do not meet your requirements, you can add properties by overriding the GetAdditionalData() method of ReportingAdditionalDataHandler.

public override IEnumerable<string> GetAdditionalData(ILineItem lineItem, IPurchaseOrder order)
        {
           return new string[] { order.MarketId.Value, order.OrderStatus.ToString(), lineItem.InventoryTrackingStatus.ToString() };
        }

The extension point in DefaultReportingService.ExportOrderDataAsCsv() calls to GetAdditionalData() to assign value for AdditionalValues, then exports AdditionalValues like other default values to the csv file.

Related blog post: Implementing a custom reporting service for Customized Commerce