I_OPERATIONCONTROLPROFILETEXT

CDS View

Operation Control Profile - Text

I_OPERATIONCONTROLPROFILETEXT is a CDS View in S/4HANA. Operation Control Profile - Text. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
A_MasterRecipeControlKeyText view_entity from BASIC Control key - Text
A_ProdnRtgOpCtrlPrflTxt view_entity from BASIC Operation Control Profile - Text
A_ProdnRtgOpCtrlPrflTxt_2 view_entity from BASIC Operation Control Profile - Text
@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 = '*';