I_MaterialScrapAssgmtMethod

DDL: I_MATERIALSCRAPASSGMTMETHOD Type: view_entity COMPOSITE

Material Scrap Assignment Method

I_MaterialScrapAssgmtMethod is a Composite CDS View that provides data about "Material Scrap Assignment Method" in SAP S/4HANA. It reads from 2 data sources (dd07t, t002) and exposes 3 fields with key fields MaterialScrapAssgmtMethod, Language.

Data Sources (2)

SourceAliasJoin Type
dd07t a from
t002 b inner

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Material Scrap Assignment Method view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #COMPOSITE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MaterialScrapAssgmtMethod
KEY Language dd07t ddlanguage Lang.
MaterialScrapAssgmtMethodDesc dd07t ddtext Short text

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_MaterialScrapAssgmtMethod.
-- 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.

CREATE VIEW I_MaterialScrapAssgmtMethod AS
SELECT
  cast( a.domvalue_l as pmmo_peg_scrap_assgmt_meth_d) AS MaterialScrapAssgmtMethod,
  a.ddlanguage AS Language,
  a.ddtext AS MaterialScrapAssgmtMethodDesc
FROM dd07t AS a
INNER JOIN t002 AS b ON /* join condition not captured in parsed metadata */
;