I_MatlProcmtExternalTypeText
Material Procurement External Type - Text
I_MatlProcmtExternalTypeText is a Basic CDS View that provides data about "Material Procurement External Type - Text" in SAP S/4HANA. It reads from 1 data source (t460b) and exposes 7 fields with key fields MaterialProcurementExtType, Language. It has 3 associations to related views. Part of development package VDM_PP_MRP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t460b | text | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [1..1] | I_MatlProcmtExternalType | _ProcurementExternalType | $projection.MaterialProcurementExtType = _ProcurementExternalType.MaterialProcurementExtType |
| [1..1] | I_MatlProcurementType | _ProcurementType | $projection.MaterialProcurementType = _ProcurementType.MaterialProcurementType |
Annotations (18)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMATPROCMEXTTYPT | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #GENERIC | view | |
| AbapCatalog.buffering.numberOfKeyFields | 001 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.representativeKey | MaterialProcurementExtType | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Material Procurement External Type - Text | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MaterialProcurementExtType | |||
| KEY | Language | |||
| MaterialProcurementType | ||||
| MaterialProcurementExtTypeName | ||||
| _Language | _Language | |||
| _ProcurementExternalType | _ProcurementExternalType | |||
| _ProcurementType | _ProcurementType |
@AbapCatalog.sqlViewName: 'IMATPROCMEXTTYPT'
@AbapCatalog.buffering: {status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001}
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'MaterialProcurementExtType'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Material Procurement External Type - Text'
/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK" ] } */
define view I_MatlProcmtExternalTypeText
as select from t460b as text
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [1..1] to I_MatlProcmtExternalType as _ProcurementExternalType on $projection.MaterialProcurementExtType = _ProcurementExternalType.MaterialProcurementExtType
association [1..1] to I_MatlProcurementType as _ProcurementType on $projection.MaterialProcurementType = _ProcurementType.MaterialProcurementType
{
// Key
@ObjectModel.foreignKey.association: '_ProcurementExternalType'
@ObjectModel.text.element: ['MaterialProcurementExtTypeName']
key cast(text.esobs as pph_esobs preserving type) as MaterialProcurementExtType,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast(text.spras as spras preserving type) as Language,
@ObjectModel.foreignKey.association: '_ProcurementType'
cast(text.sobes as pph_sobes preserving type) as MaterialProcurementType,
@Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
@Semantics.text: true
cast(text.sotxt as dtel_medname preserving type) as MaterialProcurementExtTypeName,
// Associations
_Language,
_ProcurementExternalType,
_ProcurementType
};
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