I_DunningLevel
Dunning Level of Journal Entry Items
I_DunningLevel is a Basic CDS View that provides data about "Dunning Level of Journal Entry Items" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 1 field with key field DunningLevel. Part of development package FINS_FIS_APAR.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Dunning Level of Journal Entry Items | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.representativeKey | DunningLevel | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | false | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DunningLevel |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Dunning Level of Journal Entry Items'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel:{
usageType.serviceQuality: #B,
usageType.sizeCategory: #S,
usageType.dataClass: #META,
representativeKey: 'DunningLevel',
resultSet.sizeCategory: #XS
}
@VDM: { viewType: #BASIC }
@Search: { searchable: false }
define view entity I_DunningLevel as select from dd07l
{
key cast( substring(dd07l.domvalue_l, 1, 1) as farp_mahns ) as DunningLevel
}
where
domname = 'FARP_MAHNS'
and as4local = 'A';
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