I_PlannedInvtryUsblyCodeText
Planned Inventory Usability Code Text
I_PlannedInvtryUsblyCodeText is a Basic CDS View that provides data about "Planned Inventory Usability Code Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields PlannedInventoryUsabilityCode, Language. It has 1 association to related views. Part of development package MPE_CORE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | txt | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMPE_INSMKTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | PlannedInventoryUsabilityCode | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Planned Inventory Usability Code Text | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PlannedInventoryUsabilityCode | |||
| KEY | Language | |||
| PlannedInvtryUsabilityCodeName | ||||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IMPE_INSMKTEXT'
@AbapCatalog.compiler.compareFilter:true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'PlannedInventoryUsabilityCode'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #S, dataClass: #META}
@VDM.viewType: #BASIC
@EndUserText.label: 'Planned Inventory Usability Code Text'
define view I_PlannedInvtryUsblyCodeText
as select from dd07t as txt
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.text.element: 'PlannedInvtryUsabilityCodeName'
key cast( cast(substring(txt.domvalue_l, 1, 1) as abap.numc(1)) as mpe_insmk) as PlannedInventoryUsabilityCode,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast(txt.ddlanguage as spras preserving type) as Language,
@Semantics.text: true
cast(txt.ddtext as mpe_insmk_name preserving type ) as PlannedInvtryUsabilityCodeName,
// Associations
_Language
}
where
domname = 'MPE_INSMK'
and as4local = 'A';
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