ATOV_INVENT_DOMAIN_VALUE
Fixed values of a DDIC domain
ATOV_INVENT_DOMAIN_VALUE is a CDS View that provides data about "Fixed values of a DDIC domain" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key fields Name, Code.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | Value | from |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ATO_V_INV_DVAL | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Fixed values of a DDIC domain | view |
@AbapCatalog.sqlViewName: 'ATO_V_INV_DVAL'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling:{ type: #INHERITED, algorithm: #SESSION_VARIABLE }
@EndUserText.label: 'Fixed values of a DDIC domain'
define view ATOV_INVENT_DOMAIN_VALUE
as select from dd07l as Value
association[1..*] to ATOV_INVENT_DOMAIN_VALUE_TEXT as _Text
on $projection.Name = _Text.Name
and $projection.Code = _Text.Code
{
key Value.domname as Name,
key Value.domvalue_l as Code,
_Text
} where Value.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"ATOV_INVENT_DOMAIN_VALUE_TEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"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