P_ACMContractValueHelp

DDL: P_ACMCONTRACTVALUEHELP SQL: PCONTVALH Type: view BASIC

P_ACMContractValueHelp is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (wbhk) and exposes 3 fields with key field ContractNum. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
wbhk wbhk from

Associations (1)

CardinalityTargetAliasCondition
[0..*] P_TradingContractTypeDesc _ContractTypeText $projection.TradingContractType = _ContractTypeText.tctyp

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName PCONTVALH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.type #INHERITED view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.private true view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ContractNum tkonn
TradingContractType tctyp
tctyp_descr
@AbapCatalog.sqlViewName: 'PCONTVALH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.type: #INHERITED
@AbapCatalog.preserveKey:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.private: true
@VDM.viewType: #BASIC
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@Search.searchable: true
define view P_ACMContractValueHelp as select from wbhk

association [0..*] to P_TradingContractTypeDesc as _ContractTypeText on $projection.TradingContractType = _ContractTypeText.tctyp

{
//      @ObjectModel.filter.enabled: false

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.9
      @EndUserText:{ label: 'Contract' , quickInfo: 'Contract' }
  key tkonn as ContractNum,

      @Search.defaultSearchElement: true
      @ObjectModel.text.element: ['tctyp_descr']
      tctyp as TradingContractType,

      @Semantics.text: true
      @EndUserText:{ label: 'Contract Type Description' , quickInfo: 'Contract Type Description' }
      _ContractTypeText[1: spras = $session.system_language ].bezei as tctyp_descr
}