shsm_mch1

DDL: SHSM_MCH1 SQL: SHSMMCH1 Type: view

shsm_mch1 is a CDS View in SAP S/4HANA. It reads from 1 data source (mch1) and exposes 8 fields with key fields matnr, charg.

Data Sources (1)

SourceAliasJoin Type
mch1 mch1 from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName SHSMMCH1 view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
Metadata.ignorePropagatedAnnotations true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY matnr mch1 matnr Vehicle Model
KEY charg charg Chargeable Proc.
lifnr lifnr Vendor no.
licha licha Supplier Batch
sgt_scat sgt_scat Stock Segment
fsh_season fsh_season Season
fsh_theme fsh_theme Theme
begru begru AuthorizGroup

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 shsm_mch1.
-- 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: SHSMMCH1

CREATE VIEW shsm_mch1 AS
SELECT
  mch1.matnr AS matnr,
  charg,
  lifnr,
  licha,
  sgt_scat,
  fsh_season,
  fsh_theme,
  begru
FROM mch1
;