I_DunningBlockingReasonCode

DDL: I_DUNNINGBLOCKINGREASONCODE SQL: IFIDUNBLOCKREAS Type: view BASIC

Dunning Blocking Reason Code

I_DunningBlockingReasonCode (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_DunningBlockingReasonCode is a Basic CDS View (Dimension) that provides data about "Dunning Blocking Reason Code" in SAP S/4HANA. It reads from 1 data source (t040s) and exposes 2 fields with key field DunningBlockingReason. It has 1 association 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 questions: Which dunning block reasons are defined to block dunning?

Structure
Measures and attributes Some important measures and attributes are: Dunning Blocking Reason

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessFinancial Operations
Application ComponentFI-AR-AR-C
CapabilitiesData Source for Defining CDS Entities, Data Source for Data Extraction
PackageFinancial Operations for SAP S/4HANA Cloud Private Edition
Description This CDS view provides the prerequisites for answering the following business questions: <ul> <li><p>Which dunning block reasons are defined to block dunning?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
t040s t040s from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_DunningBlockingReasonText _Text $projection.DunningBlockingReason = _Text.DunningBlockingReason

Annotations (15)

NameValueLevelField
EndUserText.label Dunning Blocking Reason Code view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFIDUNBLOCKREAS view
AbapCatalog.compiler.compareFilter true view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey DunningBlockingReason view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY DunningBlockingReason DunnLockReason
_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_DunningBlockingReasonCode.
-- 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: IFIDUNBLOCKREAS

CREATE VIEW I_DunningBlockingReasonCode AS
SELECT
  cast( mansp as farp_mansp preserving type ) AS DunningBlockingReason
FROM t040s
LEFT OUTER JOIN I_DunningBlockingReasonText AS _Text ON DunningBlockingReason = _Text.DunningBlockingReason  -- association [0..*]
;