I_OperationSetupType

DDL: I_OPERATIONSETUPTYPE SQL: IPPOPSETUPTYPE Type: view BASIC

Operation Setup Type

I_OperationSetupType is a Basic CDS View (Dimension) that provides data about "Operation Setup Type" in SAP S/4HANA. It reads from 1 data source (t428) and exposes 4 fields with key fields OperationSetupType, Plant. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t428 t428 from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant
[0..*] I_OperationSetupTypeText _Text $projection.OperationSetupType = _Text.OperationSetupType and $projection.Plant = _Text.Plant

Annotations (20)

NameValueLevelField
AbapCatalog.sqlViewName IPPOPSETUPTYPE 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 #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 OperationSetupType 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 Operation Setup Type view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY OperationSetupType
KEY Plant werks
_Plant _Plant
_Text _Text
@AbapCatalog.sqlViewName: 'IPPOPSETUPTYPE'
@AbapCatalog.buffering: {status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001}
@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, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'OperationSetupType'
@ObjectModel.semanticKey: ['OperationSetupType', 'Plant']
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Operation Setup Type'

define view I_OperationSetupType
  as select from t428
  association [1..1] to I_Plant                  as _Plant on  $projection.Plant = _Plant.Plant
  association [0..*] to I_OperationSetupTypeText as _Text  on  $projection.OperationSetupType = _Text.OperationSetupType
                                                           and $projection.Plant              = _Text.Plant
{
      // Key

      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
      @ObjectModel.text.association: '_Text'
  key cast(rasch as pph_rasch preserving type) as OperationSetupType,
      @ObjectModel.foreignKey.association: '_Plant'
  key werks                                    as Plant,

      // Associations

      _Plant,
      _Text
};