I_BPPurchasingCategory

DDL: I_BPPURCHASINGCATEGORY Type: view_entity BASIC

BP Purchasing Category

I_BPPurchasingCategory is a Basic CDS View that provides data about "BP Purchasing Category" in SAP S/4HANA. It reads from 1 data source (bppurgcat) and exposes 4 fields with key fields BusinessPartner, PurgCatUUID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
bppurgcat bppurgcat from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_BusinessPartner _BusinessPartner $projection.BusinessPartner = _BusinessPartner.BusinessPartner
[1..1] I_PurchasingCategory_2 _PurchasingCategory $projection.PurgCatUUID = _PurchasingCategory.PurgCatUUID

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label BP Purchasing Category view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner partner With Partner
KEY PurgCatUUID purgcatuuid
_BusinessPartner _BusinessPartner
_PurchasingCategory _PurchasingCategory

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 I_BPPurchasingCategory.
-- 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 I_BPPurchasingCategory AS
SELECT
  partner AS BusinessPartner,
  PurgCatUUID
FROM bppurgcat
LEFT OUTER JOIN I_BusinessPartner AS _BusinessPartner ON BusinessPartner = _BusinessPartner.BusinessPartner  -- association [1..1]
LEFT OUTER JOIN I_PurchasingCategory_2 AS _PurchasingCategory ON PurgCatUUID = _PurchasingCategory.PurgCatUUID  -- association [1..1]
;