C_ContractAccountCatValueHelp
Vertragskontotyp Wertehilfe
C_ContractAccountCatValueHelp is a Consumption CDS View that provides data about "Vertragskontotyp Wertehilfe" in SAP S/4HANA. It reads from 2 data sources (I_CAApplicationArea, I_ContractAccountCategory) and exposes 2 fields with key field ContractAccountCategory.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_CAApplicationArea | _CAApplArea | inner |
| I_ContractAccountCategory | _Category | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CCTRACCCATVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Vertragskontotyp Wertehilfe | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | ContractAccountCategory | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| VDM.viewType | #CONSUMPTION | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ContractAccountCategory | I_ContractAccountCategory | ContractAccountCategory | Kategorie |
| ContractAccountCategoryName | Bezeichnung |
@AbapCatalog.sqlViewName: 'CCTRACCCATVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Vertragskontotyp Wertehilfe'
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'ContractAccountCategory'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #C
@Search.searchable: true
@Consumption.ranked: true
@VDM.viewType: #CONSUMPTION
define view C_ContractAccountCatValueHelp
as select from I_ContractAccountCategory as _Category
inner join I_CAApplicationArea as _CAApplArea on _Category.CAApplicationArea = _CAApplArea.CAApplicationArea
and _CAApplArea.CAApplicationAreaIsActive = 'X'
{
@EndUserText.label: 'Kategorie'
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #HIGH }
@ObjectModel.text.element: 'ContractAccountCategoryName'
key _Category.ContractAccountCategory,
@EndUserText.label: 'Bezeichnung'
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW }
@Semantics.text: true
_Category._Text[1:Language = $session.system_language].ContractAccountCategoryName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CAAPPLICATIONAREA",
"I_CONTRACTACCOUNTCATEGORY",
"I_CONTRACTACCOUNTCATEGORYTEXT"
],
"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