User Community Service Desk Downloads
If you can't find the product or version you're looking for, visit support.ataccama.com/downloads

Data Statistics Services

These services are located in the "com.ataccama.nme.internal.engine.services.handlers.ModelStatiticsServiceBundle" service bundle. The services provide statistics about data in the hub: the count of active and inactive records for every entity. Records physically deleted in MDM (records with eng_existing=0) are neither counted nor displayed.

<service class="com.ataccama.nme.internal.engine.services.handlers.ModelStatisticsServiceBundle" />
We use a placeholder instance entity Example, a placeholder master entity Example, and a placeholder Master View Mv to illustrate the functionality of services.

getInstanceStatistics

Returns the count of active and inactive records for every instance entity and additionally for every combination of source system and instance entity. This service provides an answer to questions like "how many active party records from CRM system are in the hub?".

The request is empty:

<getInstanceStatistics>
</getInstanceStatistics>
Get instance statistics - sample response
<getInstanceStatisticsResponse>
 <entities>
  <entity inactive="0" name="party" active="32">
     <systems>
      <system inactive="0" name="life" active="0"/>
      <system inactive="0" name="crm" active="32"/>
      ...
     </systems>
  </entity>
  <entity inactive="0" name="contract" active="0">
     <systems>
      <system inactive="0" name="life" active="0"/>
      <system inactive="0" name="crm" active="0"/>
      ...
     </systems>
  </entity>
  ...
 </entities>
</getInstanceStatisticsResponse>

getMasterStatistics

Returns the count of active and inactive records for every master entity. This service provides an answer to questions like "how many active master party records are in the hub?".

The request is empty:

<getMasterStatistics>
</getMasterStatistics>
Get master statistics - sample response
<getMasterStatisticsResponse>
  <entities>
    <entity inactive="0" name="party" active="18" view="mas"/>
    <entity inactive="0" name="rel_party_party" active="3" view="mas"/>
    <entity inactive="0" name="contact" active="49" view="mas"/>
    <entity inactive="0" name="address" active="32" view="mas"/>
  </entities>
</getMasterStatisticsResponse>

Was this page useful?