A_SettlmtDocPartner

DDL: A_SETTLMTDOCPARTNER Type: view_entity CONSUMPTION Package: WLF_API_A2A_SDOC_SRV

Header Partner

A_SettlmtDocPartner is a Consumption CDS View that provides data about "Header Partner" in SAP S/4HANA. It reads from 1 data source (R_SettlmtDocPartnerTP) and exposes 18 fields with key fields SettlmtDoc, PartnerFunction, PartnerCounter. It is exposed through 1 OData service (API_SETTLMT_DOC). Part of development package WLF_API_A2A_SDOC_SRV.

Data Sources (1)

SourceAliasJoin Type
R_SettlmtDocPartnerTP R_SettlmtDocPartnerTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Header Partner view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XL view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
OData.entityType.name SettlementDocumentPartner_Type view

OData Services (1)

ServiceBindingVersionContractRelease
API_SETTLMT_DOC API_SETTLMT_DOC V4 C2 C1

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY SettlmtDoc SettlmtDoc Settlement Doc.
KEY PartnerFunction PartnerFunction Partner Functn
KEY PartnerCounter PartnerCounter Partner counter
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
SettlmtDocPartAddrRefType SettlmtDocPartAddrRefType 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
_Customer _Customer
_Supplier _Supplier

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 A_SettlmtDocPartner.
-- 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 A_SettlmtDocPartner AS
SELECT
  SettlmtDoc,
  PartnerFunction,
  PartnerCounter,
  Supplier,
  Customer,
  ContactPerson,
  Personnel,
  AddressID,
  AddressPersonID,
  ReferenceBusinessPartner,
  SettlmtDocPartAddrRefType,
  AddressObjectType,
  BPAddrDeterminationTransaction,
  BPRefAddressIDForDocSpcfcAddr,
  VATRegistration,
  PartnerIsOneTimeAccount
FROM R_SettlmtDocPartnerTP
;