A_SrcgProjImprtdSuplrListBP

DDL: A_SRCGPROJIMPRTDSUPLRLISTBP Type: view CONSUMPTION

Business Partner in Imprtd Supplier List

A_SrcgProjImprtdSuplrListBP is a Consumption CDS View that provides data about "Business Partner in Imprtd Supplier List" in SAP S/4HANA. It reads from 1 data source (R_SrcgSuplrListBusinessPartner) and exposes 15 fields with key field SrcgSuplrListBusPartUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
R_SrcgSuplrListBusinessPartner R_SrcgSuplrListBusinessPartner from

Associations (1)

CardinalityTargetAliasCondition
[1..1] R_SourcingProject _SourcingProject $projection.SourcingSupplierListUUID = _SourcingProject.SourcingSupplierListUUID

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ASPIMPRTDSLBP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
AccessControl.authorizationCheck #MANDATORY view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey SrcgSuplrListBusPartUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Business Partner in Imprtd Supplier List view
OData.entityType.name SrcgProjImprtdSuplrListBP_Type view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY SrcgSuplrListBusPartUUID SrcgSuplrListBusPartUUID Business Partner GUID
BusinessPartnerUUID BusinessPartnerUUID UUID
Supplier Supplier Supplier
BusinessPartner BusinessPartner Issuing Authority
AddressID AddressNumber Src Address No
SupplierCountryGroup SupplierCountryGroup Country/Region Group
SourcingSupplierListUUID SourcingSupplierListUUID UUID of Sourcing Supplier List
SuplrListSupplierIsMandatory SuplrListSupplierIsMandatory Mandatory Supplier
BusinessPartnerIsBlocked BusinessPartnerIsBlocked Central Block
SuplrListReferenceObjectUUID SuplrListReferenceObjectUUID Ref Object UUID
SupplierListReferenceObject SupplierListReferenceObject Reference Object
SuplrListReferenceObjectType SuplrListReferenceObjectType Ref Obj Type for Sourcing Supplier List
SourceSupplierListUUID SourceSupplierListUUID Src Suplr List UUID
SourceSupplierListType SourceSupplierListType Source Supplier List Type
_SourcingProject _SourcingProject

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_SrcgProjImprtdSuplrListBP.
-- 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_SrcgProjImprtdSuplrListBP AS
SELECT
  SrcgSuplrListBusPartUUID,
  BusinessPartnerUUID,
  Supplier,
  BusinessPartner,
  AddressNumber AS AddressID,
  SupplierCountryGroup,
  SourcingSupplierListUUID,
  SuplrListSupplierIsMandatory,
  BusinessPartnerIsBlocked,
  SuplrListReferenceObjectUUID,
  SupplierListReferenceObject,
  SuplrListReferenceObjectType,
  SourceSupplierListUUID,
  SourceSupplierListType
FROM R_SrcgSuplrListBusinessPartner
LEFT OUTER JOIN R_SourcingProject AS _SourcingProject ON SourcingSupplierListUUID = _SourcingProject.SourcingSupplierListUUID  -- association [1..1]
;