I_PRODUCTIONRESOURCETYPETEXT
Production Resource Type - Text
I_PRODUCTIONRESOURCETYPETEXT is a CDS View in S/4HANA. Production Resource Type - Text. It contains 3 fields. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_WorkCenterTypeText | view | from | BASIC | Work Center Type - Text |
Fields (3)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | Language | Language | 1 |
| KEY | ProductionResourceType | WorkCenterTypeCode | 1 |
| ProductionResourceTypeName | WorkCenterTypeName | 1 |
@AbapCatalog.sqlViewName: 'IPPPRODRESTYPTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: 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, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE,#EXTRACTION_DATA_SOURCE]
@ObjectModel.representativeKey: 'ProductionResourceType'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #L, dataClass: #META }
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Production Resource Type - Text'
@ObjectModel.sapObjectNodeType.name: 'ProductionResourceTypeText'
@Analytics.dataExtraction.enabled: true
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_ProductionResourceTypeText
as select from dd07t as txt
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key cast(substring(txt.domvalue_l, 1, 2) as productionresourcetype preserving type) as ProductionResourceType,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast(txt.ddlanguage as spras preserving type) as Language,
@Semantics.text: true
cast(txt.ddtext as productionresourcetypename preserving type) as ProductionResourceTypeName,
// Associations
_Language
}
where
txt.domname = 'CR_OBJTY'
and txt.as4local = 'A'
and txt.as4vers = '0000';