C_CndnContrTypeCustDisplay
Customer Contract Types for Display
C_CndnContrTypeCustDisplay is a Consumption CDS View that provides data about "Customer Contract Types for Display" in SAP S/4HANA. It reads from 1 data source (I_CndnContrType) and exposes 2 fields with key field CndnContrType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CndnContrType | CCType_Cust | from |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CWCBCCTYPECUSDSP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| ObjectModel.representativeKey | CndnContrType | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Customer Contract Types for Display | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CndnContrType | I_CndnContrType | CndnContrType | |
| CndnContrTypeDesc |
@AbapCatalog.sqlViewName: 'CWCBCCTYPECUSDSP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@Consumption.ranked: true
@ObjectModel.semanticKey: [ 'CndnContrType' ]
@ObjectModel.representativeKey: 'CndnContrType'
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.dataCategory: #VALUE_HELP
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Customer Contract Types for Display'
@Metadata.ignorePropagatedAnnotations: true
// Customer Condition Contract Types with authority 03 (display)
define view C_CndnContrTypeCustDisplay
as select from I_CndnContrType as CCType_Cust
{
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 1.0 }
@ObjectModel.text.element: [ 'CndnContrTypeDesc' ]
key CCType_Cust.CndnContrType as CndnContrType,
@Semantics.text:true
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
_Text[1: Language = $session.system_language ].CndnContrTypeDesc as CndnContrTypeDesc
}
where
CCType_Cust.CndnContrPartnerCat = 'C'
or CCType_Cust.CndnContrSettlmtType = '2'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CNDNCONTRTYPE",
"I_CNDNCONTRTYPETEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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