I_OperationControlProfileText

DDL: I_OPERATIONCONTROLPROFILETEXT SQL: IPPOPCONTPROFTXT Type: view BASIC Package: VDM_PP_SFC

Operation Control Profile - Text

I_OperationControlProfileText is a Basic CDS View that provides data about "Operation Control Profile - Text" in SAP S/4HANA. It reads from 1 data source (t430t) and exposes 5 fields with key fields Language, OperationControlProfile. It has 2 associations to related views. Part of development package VDM_PP_SFC.

Data Sources (1)

SourceAliasJoin Type
t430t txt from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_OperationControlProfile _Profile $projection.OperationControlProfile = _Profile.OperationControlProfile
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IPPOPCONTPROFTXT view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey OperationControlProfile 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 Control Profile - Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language t430t spras
KEY OperationControlProfile
OperationControlProfileName
_Profile _Profile
_Language _Language
@AbapCatalog.sqlViewName: 'IPPOPCONTPROFTXT'
@AbapCatalog.buffering: {status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001}
@AbapCatalog.compiler.compareFilter: 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, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'OperationControlProfile'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Operation Control Profile - Text'

define view I_OperationControlProfileText
  as select from t430t as txt
  
  association [1..1] to I_OperationControlProfile as _Profile  on $projection.OperationControlProfile     = _Profile.OperationControlProfile
  association [0..1] to I_Language                as _Language on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key txt.spras                                                      as Language,
      @ObjectModel.foreignKey.association: '_Profile'  
      @ObjectModel.text.element: ['OperationControlProfileName']
  key cast(txt.steus as pph_steus preserving type)                   as OperationControlProfile,
      @Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
      @Semantics.text: true
      cast(txt.txt as pph_steutxt preserving type)                   as OperationControlProfileName,

      // Associations

      @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
      _Profile,
      _Language
}
where
  txt.plnaw = '*';