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