ARS_API_CATALOG_STATE_DOMAIN
API Release: API Catalog State
ARS_API_CATALOG_STATE_DOMAIN is a CDS View that provides data about "API Release: API Catalog State" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field id. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | id | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | dd07t | _text | _text.domname = id.domname and _text.ddlanguage = $session.system_language and _text.as4local = id.as4local and _text.valpos = id.valpos and _text.as4vers = id.as4vers |
| [0..1] | dd07t | _english_text | _english_text.domname = id.domname and _english_text.ddlanguage = 'E' and _english_text.as4local = id.as4local and _english_text.valpos = id.valpos and _english_text.as4vers = id.as4vers |
Annotations (2)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | API Release: API Catalog State | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | id | domvalue_l | ||
| description |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'API Release: API Catalog State'
define view entity ARS_API_CATALOG_STATE_DOMAIN
as select from dd07l as id
association [0..1] to dd07t as _text on _text.domname = id.domname
and _text.ddlanguage = $session.system_language
and _text.as4local = id.as4local
and _text.valpos = id.valpos
and _text.as4vers = id.as4vers
association [0..1] to dd07t as _english_text on _english_text.domname = id.domname
and _english_text.ddlanguage = 'E'
and _english_text.as4local = id.as4local
and _english_text.valpos = id.valpos
and _english_text.as4vers = id.as4vers
{
key domvalue_l as id,
coalesce(_text.ddtext, coalesce(_english_text.ddtext, id.domvalue_l)) as description
}
where
id.domname = 'ARS_API_CATALOG_STATE'
and id.as4local = 'A'
and id.as4vers = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L",
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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