I_SettlmtMgmtDocPartner

DDL: I_SETTLMTMGMTDOCPARTNER Type: view_entity BASIC Package: WZRE_PC

Settlement Management Document Partner

I_SettlmtMgmtDocPartner is a Basic CDS View (Dimension) that provides data about "Settlement Management Document Partner" in SAP S/4HANA. It reads from 1 data source (I_SettlmtMgmtDocCmpltPartners) and exposes 33 fields with key fields SettlmtMgmtDoc, PartnerFunction, PartnerCounter. It has 1 association to related views. Part of development package WZRE_PC.

Data Sources (1)

SourceAliasJoin Type
I_SettlmtMgmtDocCmpltPartners I_SettlmtMgmtDocCmpltPartners from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_SettlmtMgmtDoc _SettlmtMgmtDoc $projection.SettlmtMgmtDoc = _SettlmtMgmtDoc.SettlmtMgmtDoc

Annotations (14)

NameValueLevelField
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.representativeKey PartnerCounter view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled false view
Analytics.internalName #LOCAL view
Analytics.technicalName IWLFSMTDCPARTNER view
EndUserText.label Settlement Management Document Partner view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view

Fields (33)

KeyFieldSource TableSource FieldDescription
KEY SettlmtMgmtDoc SettlmtMgmtDoc Document Number
KEY PartnerFunction PartnerFunction Partner Functn
KEY PartnerCounter PartnerCounter Partner counter
CreatedByUser CreatedByUser User Name
CreationDate CreationDate Time Stamp
Supplier Supplier Supplier
Customer Customer Sold-to Party
ContactPerson ContactPerson Contact Person Key
Personnel Personnel Personnel No.
AddressID AddressID Ship-to address
AddressPersonID AddressPersonID Person Number
ReferenceBusinessPartner ReferenceBusinessPartner Busn. Partner
SettlmtMgmtPartAddrRefType SettlmtMgmtPartAddrRefType Adress ind.
AddressObjectType AddressObjectType Address Type
BPAddrDeterminationTransaction BPAddrDeterminationTransaction Address Detn
BPRefAddressIDForDocSpcfcAddr BPRefAddressIDForDocSpcfcAddr BP Ref. Address Num.
VATRegistration VATRegistration VAT Registration No.
PartnerIsOneTimeAccount PartnerIsOneTimeAccount One-time acct
SettlmtMgmtDocPrtnHierLevel SettlmtMgmtDocPrtnHierLevel Hierarchy level
SettlmtMgmtDocPrtnHierFxdLevel SettlmtMgmtDocPrtnHierFxdLevel Hier.assignment
SettlmtMgmtDocCat SettlmtMgmtDocCat Doc. Category
SettlmtPartnerCat SettlmtPartnerCat Settlmt Part Cat
SettlmtBusProcCat SettlmtBusProcCat Use Case Type
_SettlmtMgmtDoc _SettlmtMgmtDoc
_PartnerFunction _PartnerFunction
_Supplier _Supplier
_Customer _Customer
_ContactPerson _ContactPerson
_Address _Address
_DfltAddrRprstn _DfltAddrRprstn
_BusinessPartnerAddress _BusinessPartnerAddress
_PersonWorkplaceAddrDfltRprstn _PersonWorkplaceAddrDfltRprstn
_BPRefAddressForDocSpcfcAddr _BPRefAddressForDocSpcfcAddr

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_SettlmtMgmtDocPartner.
-- 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.

CREATE VIEW I_SettlmtMgmtDocPartner AS
SELECT
  SettlmtMgmtDoc,
  PartnerFunction,
  PartnerCounter,
  CreatedByUser,
  CreationDate,
  Supplier,
  Customer,
  ContactPerson,
  Personnel,
  AddressID,
  AddressPersonID,
  ReferenceBusinessPartner,
  SettlmtMgmtPartAddrRefType,
  AddressObjectType,
  BPAddrDeterminationTransaction,
  BPRefAddressIDForDocSpcfcAddr,
  VATRegistration,
  PartnerIsOneTimeAccount,
  SettlmtMgmtDocPrtnHierLevel,
  SettlmtMgmtDocPrtnHierFxdLevel,
  SettlmtMgmtDocCat,
  SettlmtPartnerCat,
  SettlmtBusProcCat
FROM I_SettlmtMgmtDocCmpltPartners
LEFT OUTER JOIN I_SettlmtMgmtDoc AS _SettlmtMgmtDoc ON SettlmtMgmtDoc = _SettlmtMgmtDoc.SettlmtMgmtDoc  -- association [1..1]
;