I_SSPSupplierValueHelp

DDL: I_SSPSUPPLIERVALUEHELP SQL: ISSPSUPVALHELP Type: view COMPOSITE

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 13 fields with key field Supplier.

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 (13)

KeyFieldSource TableSource FieldDescription
KEY Supplier Supplier Supplier
SupplierName SupplierName Supplier Name
DataController1 DataController1 Data Controller
DataController2 DataController2 Data Controller
DataController3 DataController3 Data Controller
DataController4 DataController4 Data Controller
DataController5 DataController5 Data Controller
DataController6 DataController6 Data Controller
DataController7 DataController7 Data Controller
DataController8 DataController8 Data Controller
DataController9 DataController9 Data Controller
DataController10 DataController10 Data Controller
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,
  DataController1,
  DataController2,
  DataController3,
  DataController4,
  DataController5,
  DataController6,
  DataController7,
  DataController8,
  DataController9,
  DataController10,
  DataControllerSet
FROM P_SSPSupplierValueHelp
;