C_SSPSupplierPurgOrgVH

DDL: C_SSPSUPPLIERPURGORGVH SQL: CSSPSUPLRPORG_VH Type: view CONSUMPTION Package: ODATA_MM_PUR_REQ_MAINTAIN

Supplier value for SSP PR with Purchasing Organization

C_SSPSupplierPurgOrgVH is a Consumption CDS View that provides data about "Supplier value for SSP PR with Purchasing Organization" in SAP S/4HANA. It reads from 1 data source (I_SupplierPurchasingOrg) and exposes 19 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 (15)

NameValueLevelField
AbapCatalog.sqlViewName CSSPSUPLRPORG_VH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK 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
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Supplier value for SSP PR with Purchasing Organization view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
Consumption.ranked true view

Fields (19)

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
ProcurementHubSourceSystem Connected System
_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_SSPSupplierPurgOrgVH.
-- 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: CSSPSUPLRPORG_VH

CREATE VIEW C_SSPSupplierPurgOrgVH 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,
  cast('' as abap.char( 10 ) ) AS ProcurementHubSourceSystem
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..*]
;