I_DunningArea

DDL: I_DUNNINGAREA SQL: IFIDUNAREA Type: view BASIC

Dunning Area

I_DunningArea (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Financial Operations

I_DunningArea is a Basic CDS View (Dimension) that provides data about "Dunning Area" in SAP S/4HANA. It reads from 1 data source (t047m) and exposes 4 fields with key fields CompanyCode, DunningArea. It has 2 associations to related views.

SAP Help Documentation

CategoryCDS Views for Dunning
Data CategoryDimension
StatusReleased
Purpose
This CDS view provides the prerequisites for answering the following business question: Which dunning areas are available within a company code?

Prerequisites
Users who want to run reports using this CDS view must be able to display data for the following field: Authorization Object Fields with Display Access needed F_BKPF_BUK Company Code The authorization values for these authorization objects are edited using transaction PFCG.

Structure
Measures and attributes Some important measures and attributes are: Company Code

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessFinancial Operations
Application ComponentFI-AR-AR-C
CapabilitiesData Source for Defining CDS Entities
PackageFinancial Operations for SAP S/4HANA Cloud Private Edition
Description This CDS view provides the prerequisites for answering the following business question: <ul> <li><p>Which dunning areas are available within a company code?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
t047m t047m from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode
[0..*] I_DunningAreaText _Text $projection.CompanyCode = _Text.CompanyCode and $projection.DunningArea = _Text.DunningArea

Annotations (14)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Dunning Area view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName IFIDUNAREA view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ObjectModel.representativeKey DunningArea view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode Company Code
KEY DunningArea Dunning Area
_CompanyCode _CompanyCode
_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_DunningArea.
-- 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: IFIDUNAREA

CREATE VIEW I_DunningArea AS
SELECT
  cast(bukrs as fis_bukrs preserving type) AS CompanyCode,
  cast(maber as farp_maber preserving type) AS DunningArea
FROM t047m
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode  -- association [1..1]
LEFT OUTER JOIN I_DunningAreaText AS _Text ON CompanyCode = _Text.CompanyCode AND DunningArea = _Text.DunningArea  -- association [0..*]
;