I_PRODUCTIONRESOURCETYPE

CDS View

Production Resource Type

I_PRODUCTIONRESOURCETYPE is a CDS View in S/4HANA. Production Resource Type. It contains 1 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_WorkCenterType view from BASIC Work Center Type

Fields (1)

KeyField CDS FieldsUsed in Views
KEY ProductionResourceType WorkCenterTypeCode 1
@AbapCatalog.sqlViewName: 'IPPPRODNRESTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE]
@ObjectModel.representativeKey: 'ProductionResourceType'
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #L, dataClass: #META}
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Production Resource Type'

/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK", "KEY_CHECK" ]  } */
define view I_ProductionResourceType
  as select from dd07l as typ
  association [0..*] to I_ProductionResourceTypeText as _Text on $projection.ProductionResourceType = _Text.ProductionResourceType
{
      @ObjectModel.text.association: '_Text'
      // cast to data element

  key cast(substring(typ.domvalue_l, 1, 2) as productionresourcetype preserving type) as ProductionResourceType,

      // Associations

      _Text
}
where
      typ.domname  = 'CR_OBJTY'
  and typ.as4local = 'A'
  and typ.as4vers  = '0000';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_PRODUCTIONRESOURCETYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/