C_PurReqnSuplrPurgOrgVH

DDL: C_PURREQNSUPLRPURGORGVH Type: view_entity CONSUMPTION Package: ODATA_MM_PUR_REQ_MAINTAIN

Supplier Value for PR with Purchasing Organization

C_PurReqnSuplrPurgOrgVH is a Consumption CDS View that provides data about "Supplier Value for PR with Purchasing Organization" in SAP S/4HANA. It reads from 1 data source (I_SupplierPurchasingOrg) and exposes 18 fields with key fields Supplier, PurchasingOrganization. It has 3 associations to related views. Part of development package ODATA_MM_PUR_REQ_MAINTAIN.

Data Sources (1)

SourceAliasJoin Type
I_SupplierPurchasingOrg Supplier from

Associations (3)

CardinalityTargetAliasCondition
[0..1] C_PurchasingOrgValueHelp _PurchasingOrgValueHelp _PurchasingOrgValueHelp.PurchasingOrganization = $projection.PurchasingOrganization
[1..1] I_Supplier_to_BusinessPartner _Supplier_to_BusinessPartner $projection.Supplier = _Supplier_to_BusinessPartner.Supplier
[0..*] I_CountryText _CountryText $projection.Country = _CountryText.Country

Annotations (12)

NameValueLevelField
EndUserText.label Supplier Value for PR with Purchasing Organization view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey Supplier view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
Consumption.ranked true view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY Supplier Supplier Supplier
KEY PurchasingOrganization PurchasingOrganization Purchasing Organization
SupplierName _Supplier SupplierName Supplier Name
Country
CityName
PostalCode
Region
FirstName
LastName
OrganizationBPName1
OrganizationBPName2
IsBusinessPurposeCompleted _Supplier IsBusinessPurposeCompleted Purpose Completed
SupplierVATRegistration _Supplier VATRegistration VAT Registration No.
EmailAddress
AuthorizationGroup AuthorizationGroup AuthorizGroup
_Supplier _Supplier
_PurchasingOrgValueHelp _PurchasingOrgValueHelp
_CountryText _CountryText

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 C_PurReqnSuplrPurgOrgVH.
-- 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 C_PurReqnSuplrPurgOrgVH AS
SELECT
  Supplier,
  PurchasingOrganization,
  _Supplier.SupplierName AS SupplierName,
  _Supplier._AddressDefaultRepresentation.Country AS Country,
  _Supplier._AddressDefaultRepresentation.CityName AS CityName,
  _Supplier._AddressDefaultRepresentation.PostalCode AS PostalCode,
  _Supplier._AddressDefaultRepresentation.Region AS Region,
  _Supplier._SupplierToBusinessPartner._BusinessPartner.FirstName AS FirstName,
  _Supplier._SupplierToBusinessPartner._BusinessPartner.LastName AS LastName,
  _Supplier._SupplierToBusinessPartner._BusinessPartner.OrganizationBPName1 AS OrganizationBPName1,
  _Supplier._SupplierToBusinessPartner._BusinessPartner.OrganizationBPName2 AS OrganizationBPName2,
  _Supplier.IsBusinessPurposeCompleted AS IsBusinessPurposeCompleted,
  _Supplier.VATRegistration AS SupplierVATRegistration,
  _Supplier._CurrentDfltEmailAddress.EmailAddress AS EmailAddress,
  AuthorizationGroup
FROM I_SupplierPurchasingOrg AS Supplier
LEFT OUTER JOIN C_PurchasingOrgValueHelp AS _PurchasingOrgValueHelp ON _PurchasingOrgValueHelp.PurchasingOrganization = PurchasingOrganization  -- association [0..1]
LEFT OUTER JOIN I_Supplier_to_BusinessPartner AS _Supplier_to_BusinessPartner ON Supplier = _Supplier_to_BusinessPartner.Supplier  -- association [1..1]
LEFT OUTER JOIN I_CountryText AS _CountryText ON Country = _CountryText.Country  -- association [0..*]
;