I_DunningAreaText

DDL: I_DUNNINGAREATEXT SQL: IFIDUNAREATEXT Type: view BASIC

Dunning Area - Text

I_DunningAreaText (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_DunningAreaText is a Basic CDS View that provides data about "Dunning Area - Text" in SAP S/4HANA. It reads from 1 data source (t047n) and exposes 6 fields with key fields CompanyCode, DunningArea, Language. It has 2 associations to related views.

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
t047n t047n from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

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

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode Company Code
KEY DunningArea Dunning Area
KEY Language spras Off. Language
DunningAreaName Dunning Area Description
_CompanyCode _CompanyCode
_Language _Language

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_DunningAreaText.
-- 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: IFIDUNAREATEXT

CREATE VIEW I_DunningAreaText AS
SELECT
  cast(bukrs as fis_bukrs preserving type) AS CompanyCode,
  cast(maber as farp_maber preserving type) AS DunningArea,
  spras AS Language,
  cast(text1 as farp_text1_047n preserving type) AS DunningAreaName
FROM t047n
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;