I_PurgCatPartyAPI01

DDL: I_PURGCATPARTYAPI01 SQL: IPUCPARTYAPI01 Type: view BASIC

Party Referenced by Purchasing Category

I_PurgCatPartyAPI01 (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Sourcing & Procurement

I_PurgCatPartyAPI01 is a Basic CDS View that provides data about "Party Referenced by Purchasing Category" in SAP S/4HANA. It reads from 1 data source (I_PurchasingCategoryParty) and exposes 21 fields with key field PurgCatPartyUUID.

SAP API Hub

StateC1
Line of BusinessSourcing & Procurement
Application ComponentSLC-CAT
CapabilitiesData Source for Defining CDS Entities, Data Source in SQL Select, Association Target for Defining CDS Entities
PackageSourcing & Procurement for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_PurchasingCategoryParty I_PurchasingCategoryParty from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IPUCPARTYAPI01 view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #REQUIRED view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
EndUserText.label Party Referenced by Purchasing Category view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY PurgCatPartyUUID PurgCatPartyUUID Purchasing Category Party UUID
PurgCatUUID PurgCatUUID Purchasing Category UUID
SLCParty SLCParty Generic Party ID (for Partner GUID / ID / User / ...)
SLCPartyType SLCPartyType Party Type (such as Employee, Supplier)
SLCPartyRole SLCPartyRole SLC: Party Role Code
SLCPartyIdentifierType SLCPartyIdentifierType SLC Party ID Type (Supplier, Vendor, or User ID)
EmailAddress EmailAddress E-Mail Address
AuthorizationGroup I_BusinessPartner AuthorizationGroup Authorization Group
DataController1 I_BusinessPartner DataController1 BP: Data Controller (Internal Use Only)
DataController2 I_BusinessPartner DataController2 BP: Data Controller (Internal Use Only)
DataController3 I_BusinessPartner DataController3 BP: Data Controller (Internal Use Only)
DataController4 I_BusinessPartner DataController4 BP: Data Controller (Internal Use Only)
DataController5 I_BusinessPartner DataController5 BP: Data Controller (Internal Use Only)
DataController6 I_BusinessPartner DataController6 BP: Data Controller (Internal Use Only)
DataController7 I_BusinessPartner DataController7 BP: Data Controller (Internal Use Only)
DataController8 I_BusinessPartner DataController8 BP: Data Controller (Internal Use Only)
DataController9 I_BusinessPartner DataController9 BP: Data Controller (Internal Use Only)
DataController10 I_BusinessPartner DataController10 BP: Data Controller (Internal Use Only)
DataControllerSet I_BusinessPartner DataControllerSet BP: Data Controller Set Flag
BusinessPartner I_BusinessPartner BusinessPartner Business Partner Number
IsBusinessPurposeCompleted I_BusinessPartner IsBusinessPurposeCompleted Business Purpose Completed Flag

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_PurgCatPartyAPI01.
-- 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.
-- SQL view name: IPUCPARTYAPI01

CREATE VIEW I_PurgCatPartyAPI01 AS
SELECT
  PurgCatPartyUUID,
  PurgCatUUID,
  SLCParty,
  SLCPartyType,
  SLCPartyRole,
  SLCPartyIdentifierType,
  EmailAddress,
  I_BusinessPartner.AuthorizationGroup AS AuthorizationGroup,
  I_BusinessPartner.DataController1 AS DataController1,
  I_BusinessPartner.DataController2 AS DataController2,
  I_BusinessPartner.DataController3 AS DataController3,
  I_BusinessPartner.DataController4 AS DataController4,
  I_BusinessPartner.DataController5 AS DataController5,
  I_BusinessPartner.DataController6 AS DataController6,
  I_BusinessPartner.DataController7 AS DataController7,
  I_BusinessPartner.DataController8 AS DataController8,
  I_BusinessPartner.DataController9 AS DataController9,
  I_BusinessPartner.DataController10 AS DataController10,
  I_BusinessPartner.DataControllerSet AS DataControllerSet,
  I_BusinessPartner.BusinessPartner AS BusinessPartner,
  I_BusinessPartner.IsBusinessPurposeCompleted AS IsBusinessPurposeCompleted
FROM I_PurchasingCategoryParty
;