I_MiscProdnRsceToolText
Miscellaneous PRT - Text
I_MiscProdnRsceToolText is a Basic CDS View that provides data about "Miscellaneous PRT - Text" in SAP S/4HANA. It reads from 1 data source (I_ProductionResourceText) and exposes 7 fields with key fields ProductionResourceType, ProductionResourceInternalID, Language. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ProductionResourceText | text | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_ProductionResourceType | _ProductionResourceType | $projection.ProductionResourceType = _ProductionResourceType.ProductionResourceType |
| [1..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [1..1] | I_MiscPRTByInternalKey | _MiscPRTByInternalKey | $projection.ProductionResourceType = _MiscPRTByInternalKey.ProductionResourceType and $projection.ProductionResourceInternalID = _MiscPRTByInternalKey.ProductionResourceInternalID |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPPMISCPRTTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.representativeKey | ProductionResourceInternalID | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| EndUserText.label | Miscellaneous PRT - Text | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProductionResourceType | I_ProductionResourceText | ProductionResourceType | |
| KEY | ProductionResourceInternalID | I_ProductionResourceText | ProductionResourceInternalID | |
| KEY | Language | I_ProductionResourceText | Language | |
| MiscProductionResourceToolDesc | I_ProductionResourceText | ProductionResourceText | ||
| MiscPRTAuthorizationGroup | ||||
| _ProductionResourceType | _ProductionResourceType | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IPPMISCPRTTEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'ProductionResourceInternalID'
@ObjectModel.usageType: { serviceQuality: #B, sizeCategory: #M, dataClass: #MASTER }
@Search.searchable: true
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@EndUserText.label: 'Miscellaneous PRT - Text'
/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK" ] } */
define view I_MiscProdnRsceToolText
as select from I_ProductionResourceText as text
association [1..1] to I_ProductionResourceType as _ProductionResourceType on $projection.ProductionResourceType = _ProductionResourceType.ProductionResourceType
association [1..1] to I_Language as _Language on $projection.Language = _Language.Language
association [1..1] to I_MiscPRTByInternalKey as _MiscPRTByInternalKey on $projection.ProductionResourceType = _MiscPRTByInternalKey.ProductionResourceType
and $projection.ProductionResourceInternalID = _MiscPRTByInternalKey.ProductionResourceInternalID
{
@ObjectModel.foreignKey.association: '_ProductionResourceType'
key text.ProductionResourceType,
@ObjectModel.text.element: 'MiscProductionResourceToolDesc'
key text.ProductionResourceInternalID,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key text.Language as Language,
// Text
@Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
@Semantics.text: true
text.ProductionResourceText as MiscProductionResourceToolDesc,
--for DCLS
_MiscPRTByInternalKey.MiscPRTAuthorizationGroup,
// Associations
_ProductionResourceType,
_Language
}
where
text.ProductionResourceType = 'FH';
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