I_WorkCenterResponsible

DDL: I_WORKCENTERRESPONSIBLE SQL: IPPWORKCNTRRESP Type: view BASIC

Work Center Responsible

I_WorkCenterResponsible is a Basic CDS View (Dimension) that provides data about "Work Center Responsible" in SAP S/4HANA. It reads from 1 data source (tc24) and exposes 4 fields with key fields Plant, WorkCenterResponsible. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tc24 tc24 from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant

Annotations (22)

NameValueLevelField
AbapCatalog.sqlViewName IPPWORKCNTRRESP view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey WorkCenterResponsible 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 Work Center Responsible view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Plant tc24 werks
KEY WorkCenterResponsible
WorkCenterResponsibleName
_Plant _Plant
@AbapCatalog.sqlViewName: 'IPPWORKCNTRRESP'
@AbapCatalog.buffering: {status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001}
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'WorkCenterResponsible'
@ObjectModel.semanticKey: ['Plant', 'WorkCenterResponsible']
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Work Center Responsible'

define view I_WorkCenterResponsible
  as select from tc24 as tc24

  association [1..1] to I_Plant as _Plant on $projection.Plant = _Plant.Plant
{
      // Key

      @ObjectModel.foreignKey.association: '_Plant'
  key tc24.werks                                        as Plant,
      @ObjectModel.text.element: 'WorkCenterResponsibleName'
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
  key cast(tc24.veran as ap_veran preserving type)      as WorkCenterResponsible,

      // Name

      @Semantics.text: true
      cast(tc24.ktext as pph_veranname preserving type) as WorkCenterResponsibleName,

      // Associations

      _Plant
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TC24"
],
"ASSOCIATED":
[
"I_PLANT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/