C_SSPSupplierValueHelp

DDL: C_SSPSUPPLIERVALUEHELP SQL: CSSPSUPVALHELP Type: view CONSUMPTION Package: ODATA_MM_PUR_REQ_MAINTAIN

Value Help for local and hub Supplier

C_SSPSupplierValueHelp is a Consumption CDS View that provides data about "Value Help for local and hub Supplier" in SAP S/4HANA. It reads from 1 data source (I_SSPSupplierValueHelp) and exposes 7 fields with key field Supplier. It has 1 association to related views. Part of development package ODATA_MM_PUR_REQ_MAINTAIN.

Data Sources (1)

SourceAliasJoin Type
I_SSPSupplierValueHelp I_SSPSupplierValueHelp from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Supplier _Supplier $projection.Supplier = _Supplier.Supplier

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
AccessControl.personalData.blocking #REQUIRED view
AbapCatalog.sqlViewName CSSPSUPVALHELP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
Search.searchable true view
EndUserText.label Value Help for local and hub Supplier view
ObjectModel.dataCategory #VALUE_HELP view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Supplier Supplier Supplier
SupplierName SupplierName Supplier Name
FirstName
LastName
OrganizationBPName1
OrganizationBPName2
_Supplier _Supplier

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_SSPSupplierValueHelp.
-- 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: CSSPSUPVALHELP

CREATE VIEW C_SSPSupplierValueHelp AS
SELECT
  Supplier,
  SupplierName,
  _Supplier._SupplierToBusinessPartner._BusinessPartner.FirstName AS FirstName,
  _Supplier._SupplierToBusinessPartner._BusinessPartner.LastName AS LastName,
  _Supplier._SupplierToBusinessPartner._BusinessPartner.OrganizationBPName1 AS OrganizationBPName1,
  _Supplier._SupplierToBusinessPartner._BusinessPartner.OrganizationBPName2 AS OrganizationBPName2
FROM I_SSPSupplierValueHelp
LEFT OUTER JOIN I_Supplier AS _Supplier ON Supplier = _Supplier.Supplier  -- association [1..1]
;