I_IntcoValueChainDocStsTxt
Status of Intercompany Value Chain Document - Text
I_IntcoValueChainDocStsTxt is a Basic CDS View that provides data about "Status of Intercompany Value Chain Document - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields Language, IntcoValueChainDocumentStatus. It has 1 association to related views. Part of development package CA_VCM_MNTR_RAP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IVCM_ICODOCSTT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.representativeKey | IntcoValueChainDocumentStatus | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Status of Intercompany Value Chain Document - Text | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | ddlanguage | ||
| KEY | IntcoValueChainDocumentStatus | |||
| IntcoValueChainDocumentStsName | ddtext | |||
| _Language | _Language |
@AbapCatalog:{
sqlViewName: 'IVCM_ICODOCSTT',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
dataCategory: #TEXT,
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #C,
sizeCategory: #S
},
representativeKey: 'IntcoValueChainDocumentStatus'
}
@VDM.lifecycle.contract.type:#SAP_INTERNAL_API
@VDM: {
viewType: #BASIC
}
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Status of Intercompany Value Chain Document - Text'
define view I_IntcoValueChainDocStsTxt
as select from dd07t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key ddlanguage as Language,
@ObjectModel.text.element: ['IntcoValueChainDocumentStsName']
key cast(domvalue_l as vcm_document_status) as IntcoValueChainDocumentStatus,
@Semantics.text: true
ddtext as IntcoValueChainDocumentStsName,
_Language
}
where
dd07t.domname = 'VCM_DOCUMENT_STATUS'
and dd07t.as4local = 'A'
and dd07t.as4vers = '0000'
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