I_BkAcctIntrstBalanceDomain
Balance type domain values
I_BkAcctIntrstBalanceDomain is a Basic CDS View that provides data about "Balance type domain values" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field DomainValueLow. Part of development package FCLM_INTEREST_CONDITION.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | domain | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Balance type domain values | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Balance type domain values'
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@VDM.viewType: #BASIC
@ObjectModel.usageType:{ serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED }
@ObjectModel.resultSet.sizeCategory: #XS
define view entity I_BkAcctIntrstBalanceDomain
as select from dd07t as domain
{
@ObjectModel.text.element:['DomainText' ]
// @Semantics.text: true
@Search.defaultSearchElement: true
@EndUserText.label: 'Interest Calculation Type'
@UI.textArrangement: #TEXT_ONLY
//@UI.hidden: true
// @UI.textArrangement: #TEXT_FIRST
key domain.domvalue_l as DomainValueLow,
// key domain.ddlanguage as language,
@Semantics.text: true
domain.ddtext as DomainText
}
where
domain.domname = 'FCLM_BALANCE_TYPE'
// and domain.ddlanguage = abap.lang'E'
and domain.ddlanguage = $session.system_language
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