I_DunningProcedure
Dunning Procedure
I_DunningProcedure is a Basic CDS View that provides data about "Dunning Procedure" in SAP S/4HANA. It reads from 1 data source (t047a) and exposes 6 fields with key field DunningProcedure. It has 1 association to related views. Part of development package FINS_DUNNING_CDS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t047a | t047a | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_DunningProcedureText | _Text | $projection.DunningProcedure = _Text.DunningProcedure |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IDUNNPROCEDURE | view | |
| EndUserText.label | Dunning Procedure | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Metadata.allowExtensions | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.representativeKey | DunningProcedure | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DunningProcedure | mahna | ||
| DunningIntervalDays | rhyth | |||
| DunningMinimumDaysInArrears | mivrz | |||
| DunningNoticeGracePeriodDays | kulep | |||
| PublicHolidayCalendar | kalid | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IDUNNPROCEDURE'
@EndUserText.label: 'Dunning Procedure'
@AccessControl.authorizationCheck: #NOT_REQUIRED
//@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations: true
@Metadata.allowExtensions:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@ObjectModel.representativeKey: 'DunningProcedure'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
define view I_DunningProcedure
as select from t047a
association [0..*] to I_DunningProcedureText as _Text on $projection.DunningProcedure = _Text.DunningProcedure
{
@ObjectModel.text.association: '_Text'
key mahna as DunningProcedure,
rhyth as DunningIntervalDays,
mivrz as DunningMinimumDaysInArrears,
kulep as DunningNoticeGracePeriodDays,
// umskd,
// umskk,
// xnums,
// vzskz,
// mahnr,
// mahns,
kalid as PublicHolidayCalendar,
// xmger,
// xsalsh,
// xignvz
_Text
}
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