P_ACMContractValueHelp
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)
| Source | Alias | Join Type |
|---|---|---|
| wbhk | wbhk | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | P_TradingContractTypeDesc | _ContractTypeText | $projection.TradingContractType = _ContractTypeText.tctyp |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA