ScmPrd_V_Matl_V

DDL: SCMPRD_V_MATL_V SQL: SCMPRDVMATLV Type: view

Product Scm redirect for V_MATL_V

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

Data Sources (1)

SourceAliasJoin Type
ScmPrd_Matloc matloc from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName SCMPRDVMATLV view
ObjectModel.usageType.serviceQuality #C 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_MATL_V view

Fields (20)

KeyFieldSource TableSource FieldDescription
MATNR MATNR Vehicle Model
PRODUCT_TYPE PRODUCT_TYPE Product Type
locno locno Location
MATID ScmPrd_Matloc MATID Product ID
LOCID ScmPrd_Matloc LOCID Single-Character Flag
loctype loctype Location Type
LANGU LANGU Primary lang.
PLANNER_PPS PLANNER_PPS MRP Controller
PLANNER_SNP PLANNER_SNP SNP Planner
PLANNER_DEMAND PLANNER_DEMAND
PLANNER_TRANS PLANNER_TRANS
MAKTX MAKTX Product Description
EKGRP EKGRP Sub. purchasing grp
PRIO PRIO Profile priority
VEGRP VEGRP Cust.'s Pur. Grp
MATLOCID MATLOCID Loc. Prod. ID
BESKZ BESKZ Procuremt Type
KZKFG matkey KZKFG Origin of config
MAKTG MAKTG Description
model model Vehicle Model

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_Matl_V.
-- 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: SCMPRDVMATLV

CREATE VIEW ScmPrd_V_Matl_V AS
SELECT
  MATNR,
  PRODUCT_TYPE,
  locno,
  matloc.MATID AS MATID,
  matloc.LOCID AS LOCID,
  loctype,
  LANGU,
  PLANNER_PPS,
  PLANNER_SNP,
  PLANNER_DEMAND,
  PLANNER_TRANS,
  MAKTX,
  EKGRP,
  PRIO,
  VEGRP,
  MATLOCID,
  BESKZ,
  matkey.KZKFG AS KZKFG,
  MAKTG,
  model
FROM ScmPrd_Matloc AS matloc
;