I_CstrtSwMatlCstrt

DDL: I_CSTRTSWMATLCSTRT SQL: ICSTRTSWMATLC Type: view BASIC

Software Material with Constriant Data

I_CstrtSwMatlCstrt is a Basic CDS View that provides data about "Software Material with Constriant Data" in SAP S/4HANA. It reads from 5 data sources (/plmi/esd_c_swmt, /plmi/sw_cstrt_h, drad, draw, mara) and exposes 10 fields with key fields Material, DocNumber, DocumentVersion, DocumentPart, DocumentType.

Data Sources (5)

SourceAliasJoin Type
/plmi/esd_c_swmt /plmi/esd_c_swmt inner
/plmi/sw_cstrt_h /plmi/sw_cstrt_h left_outer
drad drad left_outer
draw draw left_outer
mara mara from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName ICSTRTSWMATLC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED 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
EndUserText.label Software Material with Constriant Data view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY Material matnr Vehicle Model
KEY DocNumber drad doknr Document
KEY DocumentVersion drad dokvr Doc. Version
KEY DocumentPart drad doktl Document Part
KEY DocumentType drad dokar SW Document Type
KEY LinkedSAPObject drad dokob Object
EmbeddedSoftwareVersionStatus draw dokst Document Status
EmbeddedSwExternalVersion draw res1 Reserve
AuthorizationGroup mara begru AuthorizGroup
EmbeddedSoftwareUUID /plmi/sw_cstrt_h db_key UUID

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_CstrtSwMatlCstrt.
-- 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: ICSTRTSWMATLC

CREATE VIEW I_CstrtSwMatlCstrt AS
SELECT
  matnr AS Material,
  drad.doknr AS DocNumber,
  drad.dokvr AS DocumentVersion,
  drad.doktl AS DocumentPart,
  drad.dokar AS DocumentType,
  drad.dokob AS LinkedSAPObject,
  draw.dokst AS EmbeddedSoftwareVersionStatus,
  draw.res1 AS EmbeddedSwExternalVersion,
  mara.begru AS AuthorizationGroup,
  /plmi/sw_cstrt_h.db_key AS EmbeddedSoftwareUUID
FROM mara
INNER JOIN /plmi/esd_c_swmt ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN drad ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN /plmi/sw_cstrt_h ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN draw ON /* join condition not captured in parsed metadata */
;