I_ValueChainType
Value Chain
I_ValueChainType is a Basic CDS View that provides data about "Value Chain" in SAP S/4HANA. It reads from 1 data source (vcm_chain_type) and exposes 7 fields with key fields ValueChainType, ValueChainTypeVersion. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| vcm_chain_type | ChainType | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ValueChainTypeText | _Text | $projection.ValueChainType = _Text.ValueChainType and $projection.ValueChainTypeVersion = _Text.ValueChainTypeVersion |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IVCM_CHAINTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | ValueChainType | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Value Chain | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ValueChainType | value_chain_type | ||
| KEY | ValueChainTypeVersion | version | ||
| CreationDateTime | created_at | |||
| CreatedByUser | created_by | |||
| LastChangeDateTime | last_changed_at | |||
| LastChangedByUser | last_changed_by | |||
| _Text | _Text |
@AbapCatalog: {
sqlViewName: 'IVCM_CHAINTYPE',
compiler.compareFilter: true,
preserveKey: true
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl: {
authorizationCheck: #NOT_REQUIRED
}
@ObjectModel: {
usageType: {
serviceQuality: #B,
sizeCategory: #M,
dataClass: #CUSTOMIZING
},
representativeKey: 'ValueChainType'
}
@VDM.viewType: #BASIC
@EndUserText.label: 'Value Chain'
define view I_ValueChainType
as select from vcm_chain_type as ChainType
association [0..*] to I_ValueChainTypeText as _Text on $projection.ValueChainType = _Text.ValueChainType //association to the text view
and $projection.ValueChainTypeVersion = _Text.ValueChainTypeVersion
{
//ChainType
@ObjectModel.text.association: '_Text' //field relation to text view
key value_chain_type as ValueChainType,
key version as ValueChainTypeVersion,
created_at as CreationDateTime,
created_by as CreatedByUser,
last_changed_at as LastChangeDateTime,
last_changed_by as LastChangedByUser,
_Text //text association in projection list
}
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