C_BankCashBalanceUpdateType
Balance Update Type
C_BankCashBalanceUpdateType is a Consumption CDS View that provides data about "Balance Update Type" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 2 fields with key field BalanceUpdateType. It is exposed through 1 OData service (BANKCASHBALANCE_IMPORT). Part of development package FCLM_BALANCE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DomainFixedValueText | I_DomainFixedValueText | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CBKBALUPDATETYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Balance Update Type | view | |
| Search.searchable | true | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #CONSUMPTION | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| BANKCASHBALANCE_IMPORT | BANKCASHBALANCE_IMPORT_O4 | V4 | C1 | NOT_TO_BE_RELEASED_STABLE |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BalanceUpdateType | DomainValue | ||
| BalanceUpdateTypeText | DomainText |
@AbapCatalog.sqlViewName: 'CBKBALUPDATETYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Balance Update Type'
@Search.searchable: true
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #CONSUMPTION
define view C_BankCashBalanceUpdateType
as select from I_DomainFixedValueText
{
@UI.lineItem: [
{ position: 1, importance: #HIGH }
]
@UI.fieldGroup: [
{ qualifier: 'UpdateType', position: 1, importance: #HIGH }
]
@ObjectModel: {
text.element: [ 'BalanceUpdateTypeText' ]
}
@Search: {
defaultSearchElement: true,
ranking: #HIGH,
fuzzinessThreshold: 0.9
}
@EndUserText: {
label: 'Balance Update Type',
quickInfo: 'Charging Method'
}
key DomainValue as BalanceUpdateType,
// @Semantics.language
// @UI.hidden: true
// key ddlanguage as Language,
@Semantics.text: true
@UI.lineItem: [
{ position: 2, importance: #HIGH }
]
@UI.fieldGroup: [
{ qualifier: 'UpdateType', position: 2, importance: #HIGH }
]
@EndUserText: {
label: 'Update Type Name',
quickInfo: 'Update Type Name'
}
DomainText as BalanceUpdateTypeText
}
where
SAPDataDictionaryDomain = 'FQME_BALANCE_UPDATE_TYPE'
and Language = $session.system_language
and ( DomainValue = '1' or DomainValue = '2' or DomainValue = '3' );
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