I_ProductionResourceType

DDL: I_PRODUCTIONRESOURCETYPE SQL: IPPPRODNRESTYPE Type: view BASIC

Production Resource Type

I_ProductionResourceType is a Basic CDS View (Dimension) that provides data about "Production Resource Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ProductionResourceType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l typ from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ProductionResourceTypeText _Text $projection.ProductionResourceType = _Text.ProductionResourceType

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IPPPRODNRESTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey ProductionResourceType view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Production Resource Type view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ProductionResourceType
_Text _Text
@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":""
}
}*/