DataStoreObject

AnalyticsBusiness IntelligenceData VisualizationReportingSAP

Properties

Name Type Description
DataStoreObjectName string Technical name of the aDSO
DataStoreObjectDescription string Description of the aDSO
DataStoreObjectType string Data store object type
InfoArea string InfoArea containing the aDSO
ActivationStatus string Current activation status
RecordCount integer Number of records in the active table
View JSON Schema on GitHub

JSON Schema

sap-bi-datastoreobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DataStoreObject",
  "title": "DataStoreObject",
  "type": "object",
  "properties": {
    "DataStoreObjectName": {
      "type": "string",
      "description": "Technical name of the aDSO"
    },
    "DataStoreObjectDescription": {
      "type": "string",
      "description": "Description of the aDSO"
    },
    "DataStoreObjectType": {
      "type": "string",
      "enum": [
        "Standard",
        "WriteOptimized",
        "DirectUpdate"
      ],
      "description": "Data store object type"
    },
    "InfoArea": {
      "type": "string",
      "description": "InfoArea containing the aDSO"
    },
    "ActivationStatus": {
      "type": "string",
      "enum": [
        "Active",
        "Inactive",
        "Modified"
      ],
      "description": "Current activation status"
    },
    "RecordCount": {
      "type": "integer",
      "description": "Number of records in the active table"
    }
  }
}