I_Domain
Domain
I_Domain is a Basic CDS View that provides data about "Domain" in SAP S/4HANA. It reads from 1 data source (dd01l) and exposes 3 fields with key fields SAPDataDictionaryDomain, DomainActivationState, DomainVersion.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd01l | dd01l | from |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Domain | view | |
| ObjectModel.representativeKey | SAPDataDictionaryDomain | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.sqlViewName | IDOMAIN | view | |
| AbapCatalog.buffering.status | #NOT_ALLOWED | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.lifecycle.status | #DEPRECATED | view | |
| VDM.lifecycle.successor | NONE | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SAPDataDictionaryDomain | domname | ||
| KEY | DomainActivationState | as4local | ||
| KEY | DomainVersion | as4vers |
@EndUserText: {label: 'Domain'}
@ObjectModel: {representativeKey: 'SAPDataDictionaryDomain',
usageType: {serviceQuality: #B,
sizeCategory: #M,
dataClass: #META}}
@VDM: {viewType: #BASIC}
@AbapCatalog: {compiler: {compareFilter: true},
sqlViewName: 'IDOMAIN',
buffering: {status: #NOT_ALLOWED}}
@AccessControl: {authorizationCheck: #NOT_REQUIRED}
@ClientHandling.algorithm: #SESSION_VARIABLE
// views deprecated for Cloud 1808/ OP 1809
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.lifecycle.status: #DEPRECATED
@VDM.lifecycle.successor: 'NONE'
define view I_Domain
as select from dd01l
{
key domname as SAPDataDictionaryDomain,
key as4local as DomainActivationState,
key as4vers as DomainVersion
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD01L"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA