C_CADocumentTypeValueHelp
Belegart Wertehilfe
C_CADocumentTypeValueHelp is a Consumption CDS View that provides data about "Belegart Wertehilfe" in SAP S/4HANA. It reads from 2 data sources (I_CAApplicationArea, I_CADocumentType) and exposes 2 fields with key field CADocumentType.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_CAApplicationArea | _CAApplArea | inner |
| I_CADocumentType | _CADocType | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_Language | sylangu |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CCADOCTYPEVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Belegart Wertehilfe | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| Search.searchable | true | view | |
| VDM.viewType | #CONSUMPTION | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CADocumentType | I_CADocumentType | CADocumentType | |
| CADocumentTypeName |
@AbapCatalog.sqlViewName: 'CCADOCTYPEVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Belegart Wertehilfe'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #C
@Search.searchable: true
@VDM.viewType: #CONSUMPTION
define view C_CADocumentTypeValueHelp
with parameters
@Consumption.hidden: true
@Environment.systemField: #SYSTEM_LANGUAGE
P_Language : sylangu
as select from I_CADocumentType as _CADocType
inner join I_CAApplicationArea as _CAApplArea
on _CADocType.CAApplicationArea = _CAApplArea.CAApplicationArea
and _CAApplArea.CAApplicationAreaIsActive = 'X'
{
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8 }
@ObjectModel.text.element: 'CADocumentTypeName'
key _CADocType.CADocumentType,
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8 }
@Semantics.text: true
_CADocType._Text[1:Language = :P_Language].CADocumentTypeName
}
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