I_InventoryTransactionTypeT
Inventory Transaction Type - Text
I_InventoryTransactionTypeT is a Basic CDS View that provides data about "Inventory Transaction Type - Text" in SAP S/4HANA. It reads from 1 data source (t158w) and exposes 5 fields with key fields InventoryTransactionType, Language. It has 2 associations to related views. Part of development package MM_IM_VDM_PI.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t158w | t158w | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_InventoryTransactionType | _InventoryTransactionType | $projection.InventoryTransactionType = _InventoryTransactionType.InventoryTransactionType |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.entityBuffer.definitionAllowed | true | view | |
| EndUserText.label | Inventory Transaction Type - Text | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | InventoryTransactionType | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.sapObjectNodeType.name | InventoryTransactionTypeText | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Analytics.dataExtraction.enabled | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InventoryTransactionType | vgart | ||
| KEY | Language | spras | ||
| InventoryTransactionTypeText | ||||
| _InventoryTransactionType | _InventoryTransactionType | |||
| _Language | _Language |
@AbapCatalog.entityBuffer.definitionAllowed: true
@EndUserText.label: 'Inventory Transaction Type - Text'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
usageType:{
sizeCategory: #S,
serviceQuality: #A,
dataClass:#CUSTOMIZING
},
representativeKey: 'InventoryTransactionType',
dataCategory: #TEXT,
modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
sapObjectNodeType.name: 'InventoryTransactionTypeText',
supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #EXTRACTION_DATA_SOURCE]
}
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@Metadata.ignorePropagatedAnnotations: true
@Analytics.dataExtraction.enabled: true
define view entity I_InventoryTransactionTypeT
as
select from t158w
association [0..1] to I_InventoryTransactionType as _InventoryTransactionType on $projection.InventoryTransactionType = _InventoryTransactionType.InventoryTransactionType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key vgart as InventoryTransactionType,
@Semantics.language: true
key spras as Language,
@Semantics.text: true
cast ( ltext as pi_transaction_type_text preserving type ) as InventoryTransactionTypeText,
_InventoryTransactionType,
_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