ScmPrd_V_Lp

DDL: SCMPRD_V_LP SQL: SCMPRDVLP Type: view

Product Scm redirect for V_LP

ScmPrd_V_Lp is a CDS View that provides data about "Product Scm redirect for V_LP" in SAP S/4HANA. It reads from 1 data source (ScmPrd_Matloc) and exposes 5 fields.

Data Sources (1)

SourceAliasJoin Type
ScmPrd_Matloc matloc from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName SCMPRDVLP view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #AUTOMATED view
EndUserText.label Product Scm redirect for V_LP view

Fields (5)

KeyFieldSource TableSource FieldDescription
MATID ScmPrd_Matloc MATID Product ID
locid loc locid Single-Character Flag
MATNR MATNR Vehicle Model
locno locno Location
MAKTX MAKTX Product Description

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 ScmPrd_V_Lp.
-- 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: SCMPRDVLP

CREATE VIEW ScmPrd_V_Lp AS
SELECT
  matloc.MATID AS MATID,
  loc.locid AS locid,
  MATNR,
  locno,
  MAKTX
FROM ScmPrd_Matloc AS matloc
;