C_DunningEntryForOutpDetn

DDL: C_DUNNINGENTRYFOROUTPDETN SQL: CDUNNFOROUTPDETN Type: view CONSUMPTION Package: FINS_OUTPUT_MGMT_FO_DUNN

Determine Output Parameter for Dunning

C_DunningEntryForOutpDetn is a Consumption CDS View that provides data about "Determine Output Parameter for Dunning" in SAP S/4HANA. It reads from 2 data sources (I_OutputChannel, I_DunningEntryForOutpDetn) and exposes 14 fields with key fields DunningRunDate, DunningRun, FinancialAccountType, CompanyCode, Customer. Part of development package FINS_OUTPUT_MGMT_FO_DUNN.

Data Sources (2)

SourceAliasJoin Type
I_OutputChannel _OutputChannel inner
I_DunningEntryForOutpDetn I_DunningEntryForOutpDetn from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CDUNNFOROUTPDETN view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Determine Output Parameter for Dunning view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #CONSUMPTION view
AccessControl.personalData.blocking #REQUIRED view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY DunningRunDate DunningRunDate
KEY DunningRun DunningRun
KEY FinancialAccountType FinancialAccountType Fin. Account Type
KEY CompanyCode CompanyCode Receiver Company Code
KEY Customer Customer Sold-to Party
KEY Supplier Supplier Supplier
KEY OneTimeAcctBankAccount OneTimeAcctBankAccount
KEY CustomerHeadOffice CustomerHeadOffice Head Office
KEY GroupingDunningArea GroupingDunningArea
KEY GroupingDunningLevel GroupingDunningLevel
KEY DunningClerk DunningClerk Dunning Clerk
KEY OutputChannel I_OutputChannel OutputChannel Memo Record Channel
DunningProcedure DunningProcedure Dunn.Procedure
DunningLevel DunningLevel Dunning Level

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 C_DunningEntryForOutpDetn.
-- 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: CDUNNFOROUTPDETN

CREATE VIEW C_DunningEntryForOutpDetn AS
SELECT
  DunningRunDate,
  DunningRun,
  FinancialAccountType,
  CompanyCode,
  Customer,
  Supplier,
  OneTimeAcctBankAccount,
  CustomerHeadOffice,
  GroupingDunningArea,
  GroupingDunningLevel,
  DunningClerk,
  _OutputChannel.OutputChannel AS OutputChannel,
  DunningProcedure,
  DunningLevel
FROM I_DunningEntryForOutpDetn
INNER JOIN I_OutputChannel AS _OutputChannel ON /* join condition not captured in parsed metadata */
;