A_BillingDocRequestPartnerS2S

DDL: A_BILLINGDOCREQUESTPARTNERS2S Type: view_entity CONSUMPTION

Header Partner

A_BillingDocRequestPartnerS2S is a Consumption CDS View that provides data about "Header Partner" in SAP S/4HANA. It reads from 1 data source (R_BillgDocRequestPartnerTP) and exposes 7 fields with key fields BillingDocumentRequest, PartnerFunction.

Data Sources (1)

SourceAliasJoin Type
R_BillgDocRequestPartnerTP R_BillgDocRequestPartnerTP projection

Annotations (9)

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

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY BillingDocumentRequest HeaderPartner BillingDocumentRequest
KEY PartnerFunction HeaderPartner PartnerFunction Partner Functn
Customer HeaderPartner Customer Sold-to Party
Personnel HeaderPartner Personnel Personnel No.
ContactPerson HeaderPartner ContactPerson Contact Person Key
ReferenceBusinessPartner HeaderPartner ReferenceBusinessPartner Busn. Partner
BusinessPartnerAddressUUID HeaderPartner BusinessPartnerAddressUUID UUID

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_BillingDocRequestPartnerS2S.
-- 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_BillingDocRequestPartnerS2S AS
SELECT
  HeaderPartner.BillingDocumentRequest AS BillingDocumentRequest,
  HeaderPartner.PartnerFunction AS PartnerFunction,
  HeaderPartner.Customer AS Customer,
  HeaderPartner.Personnel AS Personnel,
  HeaderPartner.ContactPerson AS ContactPerson,
  HeaderPartner.ReferenceBusinessPartner AS ReferenceBusinessPartner,
  HeaderPartner.BusinessPartnerAddressUUID AS BusinessPartnerAddressUUID
FROM R_BillgDocRequestPartnerTP
;