I_DistrControllingValueType
Distribution controlling value type
I_DistrControllingValueType is a Composite CDS View that provides data about "Distribution controlling value type" in SAP S/4HANA. It reads from 2 data sources (dd07t, t002) and exposes 3 fields with key fields ControllingValueType, Language.
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Distribution controlling value type | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #COMPOSITE | view |
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Distribution controlling value type'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
@VDM.viewType: #COMPOSITE
define view entity I_DistrControllingValueType
as select from dd07t as a
inner join t002 as b on b.spras = a.ddlanguage
{
key cast( a.domvalue_l as co_wrttp ) as ControllingValueType,
key a.ddlanguage as Language,
a.ddtext as ControllingValueTypeText
}
where
a.domname = 'CO_WRTTP'
and a.as4local = 'A'
and(
a.domvalue_l = '04'
or a.domvalue_l = '12'
or a.domvalue_l = '22'
)
and a.ddlanguage = $session.system_language
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