I_FMEACustomValnProcedTxt

DDL: I_FMEACUSTOMVALNPROCEDTXT Type: view_entity BASIC Package: PLM_FMEA

Custom Valuation Procedure - Text

I_FMEACustomValnProcedTxt is a Basic CDS View that provides data about "Custom Valuation Procedure - Text" in SAP S/4HANA. It reads from 1 data source (plmc_audit_calct) and exposes 4 fields with key fields FMEAValuationProcedure, Language. It has 1 association to related views. Part of development package PLM_FMEA.

Data Sources (1)

SourceAliasJoin Type
plmc_audit_calct plmc_audit_calct from

Associations (1)

CardinalityTargetAliasCondition
[1] I_FMEACustomValnProcedure _FMEACustomValnProcedure $projection.FMEAValuationProcedure = _FMEACustomValnProcedure.FMEAValuationProcedure

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Custom Valuation Procedure - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY FMEAValuationProcedure plmc_audit_calct calculation_procedure
KEY Language plmc_audit_calct langu
FMEAValuationProcedureText plmc_audit_calct calculation_procedure_text
_FMEACustomValnProcedure _FMEACustomValnProcedure
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Custom Valuation Procedure - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #S,
  dataClass: #CUSTOMIZING
}
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
define view entity I_FMEACustomValnProcedTxt as select from plmc_audit_calct 
  association [1] to I_FMEACustomValnProcedure as _FMEACustomValnProcedure on $projection.FMEAValuationProcedure = _FMEACustomValnProcedure.FMEAValuationProcedure
{
  key plmc_audit_calct.calculation_procedure as FMEAValuationProcedure,
  @Semantics.language: true  
  key plmc_audit_calct.langu as Language,
  @Semantics.text: true    
  plmc_audit_calct.calculation_procedure_text as FMEAValuationProcedureText,
  //Associations

  _FMEACustomValnProcedure
}