V_ARS_RELEASE_CONTRACT
API Release Contracts
V_ARS_RELEASE_CONTRACT is a CDS View that provides data about "API Release Contracts" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | value | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | dd07t | text | text.domname = value.domname and text.as4local = value.as4local and text.valpos = value.valpos and text.as4vers = value.as4vers and text.domvalue_l = value.domvalue_l and text.ddlanguage = $session.system_language |
| [0..1] | dd07t | text_en | text_en.domname = value.domname and text_en.as4local = value.as4local and text_en.valpos = value.valpos and text_en.as4vers = value.as4vers and text_en.domvalue_l = value.domvalue_l and text_en.ddlanguage = 'E' |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | V_ARS_REL_CTRCT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | API Release Contracts | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| rank | dd07l | valpos | ||
| description |
@AbapCatalog.sqlViewName: 'V_ARS_REL_CTRCT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'API Release Contracts'
define view V_ARS_RELEASE_CONTRACT
as select from dd07l as value
association [0..1] to dd07t as text on text.domname = value.domname
and text.as4local = value.as4local
and text.valpos = value.valpos
and text.as4vers = value.as4vers
and text.domvalue_l = value.domvalue_l
and text.ddlanguage = $session.system_language
association [0..1] to dd07t as text_en on text_en.domname = value.domname
and text_en.as4local = value.as4local
and text_en.valpos = value.valpos
and text_en.as4vers = value.as4vers
and text_en.domvalue_l = value.domvalue_l
and text_en.ddlanguage = 'E'
{
key value.domvalue_l as release_contract,
value.valpos as rank,
coalesce(text.ddtext, coalesce(text_en.ddtext, '')) as description
}
where
value.domname = 'ARS_RELEASE_CONTRACT'
and value.as4local = 'A'
and value.as4vers = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L",
"DD07T"
],
"ASSOCIATED":
[
"DD07T"
],
"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