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