A_SuplrListBusinessPartner_2

DDL: A_SUPLRLISTBUSINESSPARTNER_2 Type: view_entity CONSUMPTION

Business Partner for Supplier List

A_SuplrListBusinessPartner_2 is a Consumption CDS View that provides data about "Business Partner for Supplier List" in SAP S/4HANA. It reads from 1 data source (R_SuplrListBusinessPartnerTP) and exposes 15 fields with key field SuplrListBusinessPartnerUUID. It is exposed through 1 OData service (API_SUPPLIERLIST_2).

Data Sources (1)

SourceAliasJoin Type
R_SuplrListBusinessPartnerTP R_SuplrListBusinessPartnerTP projection

Annotations (17)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
OData.entityType.name SupplierListBusinessPartner_Type view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.representativeKey SuplrListBusinessPartnerUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Business Partner for Supplier List view
AbapCatalog.extensibility.extensible true view
AbapCatalog.extensibility.allowNewDatasources false view
AbapCatalog.extensibility.elementSuffix SLB view
AbapCatalog.extensibility.quota.maximumFields 204 view
AbapCatalog.extensibility.quota.maximumBytes 4080 view
AbapCatalog.extensibility.allowNewCompositions true view

OData Services (1)

ServiceBindingVersionContractRelease
API_SUPPLIERLIST_2

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY SuplrListBusinessPartnerUUID SuplrListBusinessPartnerUUID Supplier List Business Partner UUID
BusinessPartnerUUID BusinessPartnerUUID UUID
SupplierListUUID SupplierListUUID Supplier List UUID
Supplier Supplier Supplier
BusinessPartnerIsBlocked BusinessPartnerIsBlocked Central Block
SupplierIsProposed SupplierIsProposed Supplier Is Proposed
SuplrListSupplierIsMandatory SuplrListSupplierIsMandatory Mandatory Supplier
AddressID AddressID Ship-to address
SupplierCountryGroup SupplierCountryGroup Country/Region Group
BusinessPartner BusinessPartner Issuing Authority
SuplrListSuplrProposalStatus SuplrListSuplrProposalStatus Prop. Suplr. status
SuplrListSuplrProposalAction SuplrListSuplrProposalAction Supplier Proposal Action
IsDeleted IsDeleted TRUE
Region Region Venue Region
Country Country Venue: Ctry/Reg

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_SuplrListBusinessPartner_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_SuplrListBusinessPartner_2 AS
SELECT
  SuplrListBusinessPartnerUUID,
  BusinessPartnerUUID,
  SupplierListUUID,
  Supplier,
  BusinessPartnerIsBlocked,
  SupplierIsProposed,
  SuplrListSupplierIsMandatory,
  AddressID,
  SupplierCountryGroup,
  BusinessPartner,
  SuplrListSuplrProposalStatus,
  SuplrListSuplrProposalAction,
  IsDeleted,
  Region,
  Country
FROM R_SuplrListBusinessPartnerTP
;