C_BankFeeCompnMethVH
Bank Fee : Value Help for Cmpst Mtd
C_BankFeeCompnMethVH is a Consumption CDS View that provides data about "Bank Fee : Value Help for Cmpst Mtd" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 2 fields with key field CompensationMethod.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DomainFixedValueText | CompensationMethod | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CBFCOMPNMETHVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| EndUserText.label | Bank Fee : Value Help for Cmpst Mtd | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompensationMethod | DomainValue | ||
| BankFeeCompnMethTxt | DomainText |
@AbapCatalog: {
sqlViewName: 'CBFCOMPNMETHVH',
compiler.compareFilter: true
}
@ClientHandling: {
algorithm: #SESSION_VARIABLE
}
@ObjectModel: {
usageType: {
serviceQuality: #B,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@EndUserText.label: 'Bank Fee : Value Help for Cmpst Mtd'
@Search.searchable: true
@Consumption.ranked: true
@ObjectModel.dataCategory: #VALUE_HELP
define view C_BankFeeCompnMethVH
as select from I_DomainFixedValueText as CompensationMethod
{
@UI.lineItem: [
{ position: 1, importance: #HIGH}
]
@ObjectModel: {
text.element: [ 'BankFeeCompnMethTxt' ]
}
@Search: {
defaultSearchElement: true,
ranking: #HIGH,
fuzzinessThreshold: 0.8
}
@EndUserText: {
label: 'Compensation Method',
quickInfo: 'Compensation Method'
}
key DomainValue as CompensationMethod,
@Semantics.text: true
@UI.lineItem: [
{ position: 2, importance: #HIGH}
]
@Search: {
defaultSearchElement: true,
ranking: #LOW,
fuzzinessThreshold: 0.8
}
@EndUserText: {
label: 'Comp. Meth. Name',
quickInfo: 'Compensation Method Name'
}
DomainText as BankFeeCompnMethTxt
}
where
SAPDataDictionaryDomain = 'FCLM_BRM_COMPSTN_MTD'
and CompensationMethod.Language = $session.system_language;
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DOMAINFIXEDVALUETEXT"
],
"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