I_BPSupplierDunningTP

DDL: I_BPSUPPLIERDUNNINGTP SQL: IBPSUPPDUNTP Type: view TRANSACTIONAL Package: VDM_MD_BP

BO view for Supplier Dunning

I_BPSupplierDunningTP is a Transactional CDS View that provides data about "BO view for Supplier Dunning" in SAP S/4HANA. It reads from 1 data source (I_SupplierDunning) and exposes 20 fields with key fields BusinessPartner, CompanyCode, DunningArea. It has 3 associations to related views. Part of development package VDM_MD_BP.

Data Sources (1)

SourceAliasJoin Type
I_SupplierDunning SupplierDunning from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_SupplierToBusinessPartner _SupplierToBusinessPartner $projection.Supplier = _SupplierToBusinessPartner.Supplier
[1..1] I_BusinessPartnerTP _BusinessPartner $projection.businesspartner = _BusinessPartner.BusinessPartner
[1..1] I_BusinessPartnerSuplrCoTP _BusinessPartnerSupplierCo $projection.businesspartner = _BusinessPartnerSupplierCo.BusinessPartner and $projection.CompanyCode = _BusinessPartnerSupplierCo.CompanyCode

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IBPSUPPDUNTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label BO view for Supplier Dunning view
ObjectModel.writeDraftPersistence SUPP_DUN_D view
ObjectModel.draftEnabled true view
ObjectModel.createEnabled EXTERNAL_CALCULATION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view
VDM.viewType #TRANSACTIONAL view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner
KEY CompanyCode I_SupplierDunning CompanyCode Receiver Company Code
KEY DunningArea I_SupplierDunning DunningArea Dunning Area
Supplier I_SupplierDunning Supplier Supplier
BusinessPartnerForEdit
CompanyCodeForEdit I_SupplierDunning CompanyCode Receiver Company Code
DunningAreaForEdit I_SupplierDunning DunningArea Dunning Area
DunningRecipient I_SupplierDunning DunningRecipient Dunn.Recipient
LegDunningProcedureOn I_SupplierDunning LegDunningProcedureOn Leg.Dunn.Proc.
LastDunnedOn I_SupplierDunning LastDunnedOn Last Dunned
DunningProcedure I_SupplierDunning DunningProcedure Dunn.Procedure
DunningLevel I_SupplierDunning DunningLevel Dunning Level
DunningBlock I_SupplierDunning DunningBlock Dunn. Block
DunningClerk I_SupplierDunning DunningClerk Dunning Clerk
StandardUsage
_BusinessPartner _BusinessPartner
_BusinessPartnerSupplierCo _BusinessPartnerSupplierCo
_DunningAreaText _DunningAreaText
_DunningProcedureText _DunningProcedureText
_DunningBlockText _DunningBlockText

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_BPSupplierDunningTP.
-- 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: IBPSUPPDUNTP

CREATE VIEW I_BPSupplierDunningTP AS
SELECT
  _SupplierToBusinessPartner._BusinessPartner.BusinessPartner AS BusinessPartner,
  SupplierDunning.CompanyCode AS CompanyCode,
  SupplierDunning.DunningArea AS DunningArea,
  SupplierDunning.Supplier AS Supplier,
  _SupplierToBusinessPartner._BusinessPartner.BusinessPartner AS BusinessPartnerForEdit,
  SupplierDunning.CompanyCode AS CompanyCodeForEdit,
  SupplierDunning.DunningArea AS DunningAreaForEdit,
  SupplierDunning.DunningRecipient AS DunningRecipient,
  SupplierDunning.LegDunningProcedureOn AS LegDunningProcedureOn,
  SupplierDunning.LastDunnedOn AS LastDunnedOn,
  SupplierDunning.DunningProcedure AS DunningProcedure,
  SupplierDunning.DunningLevel AS DunningLevel,
  SupplierDunning.DunningBlock AS DunningBlock,
  SupplierDunning.DunningClerk AS DunningClerk,
  cast(' ' as boole_d) AS StandardUsage
FROM I_SupplierDunning AS SupplierDunning
LEFT OUTER JOIN I_SupplierToBusinessPartner AS _SupplierToBusinessPartner ON Supplier = _SupplierToBusinessPartner.Supplier  -- association [1..1]
LEFT OUTER JOIN I_BusinessPartnerTP AS _BusinessPartner ON businesspartner = _BusinessPartner.BusinessPartner  -- association [1..1]
LEFT OUTER JOIN I_BusinessPartnerSuplrCoTP AS _BusinessPartnerSupplierCo ON businesspartner = _BusinessPartnerSupplierCo.BusinessPartner AND CompanyCode = _BusinessPartnerSupplierCo.CompanyCode  -- association [1..1]
;