Deliverable Lifecycle

This chart displays, for every week:

  • The count of deliverables per status (status having one the following value: PRIVATE, IN_WORK, FROZEN, RELEASED, and OBSOLETE).
  • The count of deliverables whose status changes to a new value (a new value being one of the possible statuses already mentioned above).

Business Objects Project (data model class "deliverable")
Values (or X-Axis and Y-Axis)
  • X-Axis displays weeks in an ascending order
  • Y-Axis
    • Left Y-axis displays the count of deliverables
    • Right Y-axis displays the count of deliverables whose status change
Sorting The results are not sorted.
Limits There is no limit.
Colors Colors are configured in Preferences. For more information, see Configuring Facet Displays.
Available Views Line chart and bar chart.
Interactions On this chart, you can:
  • Click a section of a bin to refine on that status.
  • Click a point of any line to refine on the associated status.
  • Click to switch to fullscreen display.
Technical Details
  • Consolidation
    • document_history_type is obtained from project_getProjectHistoryFromEnovia aggregation processor
  • Data model
  • Class: deliverable
  • Property: document_history_type
  • Property: history_weekofyear
  • Mashup feed Project
    • Facets

      • week_current: multi facet involving history_weekofyear and current facets

    • Aggregations
      • history:
        • SUM(isSnapshot). Gives the count of deliverable
        • isSnapshot: #regex_match(document_history_type, 'snapshot'). Filters documents that are stored as snapshots.
      • transition:
        • SUM(isTransition): Gives the count of transitions
        • isTransition: #regex_match(document_history_type, 'transition'). Filters documents that are stored as transitions.