I_SSPSupplierValueHelp

DDL: I_SSPSUPPLIERVALUEHELP SQL: ISSPSUPVALHELP Type: view COMPOSITE Package: APPL_MM_PUR_REQ_HUB

SSP Supplier value help

I_SSPSupplierValueHelp is a Composite CDS View that provides data about "SSP Supplier value help" in SAP S/4HANA. It reads from 1 data source (P_SSPSupplierValueHelp) and exposes 3 fields with key field Supplier. Part of development package APPL_MM_PUR_REQ_HUB.

Data Sources (1)

SourceAliasJoin Type
P_SSPSupplierValueHelp P_SSPSupplierValueHelp from

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 ISSPSUPVALHELP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #COMPOSITE view
EndUserText.label SSP Supplier value help view
ObjectModel.dataCategory #VALUE_HELP view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Supplier Supplier Supplier
SupplierName SupplierName Supplier Name
DataControllerSet DataControllerSet Data Ctrlr. Set

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_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: ISSPSUPVALHELP

CREATE VIEW I_SSPSupplierValueHelp AS
SELECT
  Supplier,
  SupplierName,
  DataControllerSet
FROM P_SSPSupplierValueHelp
;