I_CstrtSwMatl

DDL: I_CSTRTSWMATL SQL: ICSTRTSWMATL Type: view BASIC

Software Material List

I_CstrtSwMatl is a Basic CDS View that provides data about "Software Material List" in SAP S/4HANA. It reads from 1 data source (makt) and exposes 3 fields with key field EmbeddedSwCstrtSoftwareMatl.

Data Sources (1)

SourceAliasJoin Type
makt makt left_outer

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICSTRTSWMATL view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.representativeKey EmbeddedSwCstrtSoftwareMatl view
EndUserText.label Software Material List view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY EmbeddedSwCstrtSoftwareMatl Material Vehicle Model
AuthorizationGroup AuthorizationGroup AuthorizGroup
EmbeddedSwCstrtSwMaterialDesc 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 I_CstrtSwMatl.
-- 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: ICSTRTSWMATL

CREATE VIEW I_CstrtSwMatl AS
SELECT
  Material AS EmbeddedSwCstrtSoftwareMatl,
  AuthorizationGroup,
  maktx AS EmbeddedSwCstrtSwMaterialDesc
LEFT OUTER JOIN makt ON /* join condition not captured in parsed metadata */
;