I_ChgRecdTypeRlvtForEngSnpsht

DDL: I_CHGRECDTYPERLVTFORENGSNPSHT SQL: ICRTYPERLVTSNP Type: view COMPOSITE

Change Record Types:Snpsht,EBOM,PLS,MBOM

I_ChgRecdTypeRlvtForEngSnpsht is a Composite CDS View that provides data about "Change Record Types:Snpsht,EBOM,PLS,MBOM" in SAP S/4HANA. It reads from 9 data sources and exposes 3 fields with key field ChangeRecordType.

Data Sources (9)

SourceAliasJoin Type
I_ChangeRecordItemRel ItemRelEBOM inner
I_ChangeRecordItemRel ItemRelMBOM inner
I_ChangeRecordItemRel ItemRelPls inner
I_ChangeRecordItemRel ItemRelSnp inner
I_ChgRecdTypeConfiguration NumberRangeInterval inner
I_ChangeRecordRefObj RefObjEBOM inner
I_ChangeRecordRefObj RefObjMBOM inner
I_ChangeRecordRefObj RefObjPls inner
I_ChangeRecordRefObj RefObjSnp inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICRTYPERLVTSNP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
EndUserText.label Change Record Types:Snpsht,EBOM,PLS,MBOM view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ChangeRecordType CRType ChangeRecordType Record Type
ChangeRecordTypeDesc CRType ChangeRecordTypeDesc
IsExternalNumberRange I_ChgRecdTypeConfiguration IsExternalNumberRange External NR

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_ChgRecdTypeRlvtForEngSnpsht.
-- 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: ICRTYPERLVTSNP

CREATE VIEW I_ChgRecdTypeRlvtForEngSnpsht AS
SELECT
  CRType.ChangeRecordType AS ChangeRecordType,
  CRType.ChangeRecordTypeDesc AS ChangeRecordTypeDesc,
  NumberRangeInterval.IsExternalNumberRange AS IsExternalNumberRange
INNER JOIN I_ChangeRecordRefObj AS RefObjSnp ON /* join condition not captured in parsed metadata */
INNER JOIN I_ChangeRecordRefObj AS RefObjEBOM ON /* join condition not captured in parsed metadata */
INNER JOIN I_ChangeRecordRefObj AS RefObjPls ON /* join condition not captured in parsed metadata */
INNER JOIN I_ChangeRecordRefObj AS RefObjMBOM ON /* join condition not captured in parsed metadata */
INNER JOIN I_ChangeRecordItemRel AS ItemRelSnp ON /* join condition not captured in parsed metadata */
INNER JOIN I_ChangeRecordItemRel AS ItemRelEBOM ON /* join condition not captured in parsed metadata */
INNER JOIN I_ChangeRecordItemRel AS ItemRelPls ON /* join condition not captured in parsed metadata */
INNER JOIN I_ChangeRecordItemRel AS ItemRelMBOM ON /* join condition not captured in parsed metadata */
INNER JOIN I_ChgRecdTypeConfiguration AS NumberRangeInterval ON /* join condition not captured in parsed metadata */
;