I_DunningProcedure

DDL: I_DUNNINGPROCEDURE SQL: IDUNNPROCEDURE Type: view BASIC

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.

Data Sources (1)

SourceAliasJoin Type
t047a t047a from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_DunningProcedureText _Text $projection.DunningProcedure = _Text.DunningProcedure

Annotations (13)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
KEY DunningProcedure mahna Dunn.Procedure
DunningIntervalDays rhyth Dunning Interv.
DunningMinimumDaysInArrears mivrz Days in Arrears
DunningNoticeGracePeriodDays kulep LI Grace Perds
PublicHolidayCalendar kalid Pub.hol.cal.ID
_Text _Text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_DunningProcedure.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IDUNNPROCEDURE

CREATE VIEW I_DunningProcedure AS
SELECT
  mahna AS DunningProcedure,
  rhyth AS DunningIntervalDays,
  mivrz AS DunningMinimumDaysInArrears,
  kulep AS DunningNoticeGracePeriodDays,
  kalid AS PublicHolidayCalendar
FROM t047a
LEFT OUTER JOIN I_DunningProcedureText AS _Text ON DunningProcedure = _Text.DunningProcedure  -- association [0..*]
;