A_BillgDocRequestPartner_2

DDL: A_BILLGDOCREQUESTPARTNER_2 Type: view_entity CONSUMPTION Package: ODATA_SD_BIL_BDR_API

Header Partners

A_BillgDocRequestPartner_2 is a Consumption CDS View that provides data about "Header Partners" in SAP S/4HANA. It reads from 1 data source (R_BillgDocRequestPartnerTP) and exposes 8 fields with key fields BillingDocumentRequest, PartnerFunction. It is exposed through 1 OData service (API_BILLINGDOCUMENTREQUEST). Part of development package ODATA_SD_BIL_BDR_API.

Data Sources (1)

SourceAliasJoin Type
R_BillgDocRequestPartnerTP R_BillgDocRequestPartnerTP projection

Annotations (9)

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

OData Services (1)

ServiceBindingVersionContractRelease
API_BILLINGDOCUMENTREQUEST API_BILLINGDOCUMENTREQUEST V4 C2 C1

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY BillingDocumentRequest Partner BillingDocumentRequest
KEY PartnerFunction Partner PartnerFunction Partner Functn
Customer Partner Customer Sold-to Party
Supplier Partner Supplier Supplier
Personnel Partner Personnel Personnel No.
ContactPerson Partner ContactPerson Contact Person Key
ReferenceBusinessPartner Partner ReferenceBusinessPartner Busn. Partner
BusinessPartnerAddressUUID Partner 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_BillgDocRequestPartner_2.
-- 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_BillgDocRequestPartner_2 AS
SELECT
  Partner.BillingDocumentRequest AS BillingDocumentRequest,
  Partner.PartnerFunction AS PartnerFunction,
  Partner.Customer AS Customer,
  Partner.Supplier AS Supplier,
  Partner.Personnel AS Personnel,
  Partner.ContactPerson AS ContactPerson,
  Partner.ReferenceBusinessPartner AS ReferenceBusinessPartner,
  Partner.BusinessPartnerAddressUUID AS BusinessPartnerAddressUUID
FROM R_BillgDocRequestPartnerTP
;