I_ChgRecdTypeRlvtForMfgSnpsht

DDL: I_CHGRECDTYPERLVTFORMFGSNPSHT SQL: ICRTYPEMFGSNP Type: view COMPOSITE

Change Record Types for Mfg Snapshot

I_ChgRecdTypeRlvtForMfgSnpsht is a Composite CDS View that provides data about "Change Record Types for Mfg Snapshot" in SAP S/4HANA. It reads from 7 data sources and exposes 3 fields with key field ChangeRecordType.

Data Sources (7)

SourceAliasJoin Type
I_ChangeRecordItemRel ItemRelETOBOM inner
I_ChangeRecordItemRel ItemRelMBOM inner
I_ChangeRecordItemRel ItemRelSnp inner
I_ChgRecdTypeConfiguration NumberRangeInterval inner
I_ChangeRecordRefObj RefObjETOBOM inner
I_ChangeRecordRefObj RefObjMBOM inner
I_ChangeRecordRefObj RefObjSnp inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICRTYPEMFGSNP 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 for Mfg Snapshot 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_ChgRecdTypeRlvtForMfgSnpsht.
-- 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: ICRTYPEMFGSNP

CREATE VIEW I_ChgRecdTypeRlvtForMfgSnpsht 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 RefObjMBOM ON /* join condition not captured in parsed metadata */
INNER JOIN I_ChangeRecordRefObj AS RefObjETOBOM 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 ItemRelMBOM ON /* join condition not captured in parsed metadata */
INNER JOIN I_ChangeRecordItemRel AS ItemRelETOBOM ON /* join condition not captured in parsed metadata */
INNER JOIN I_ChgRecdTypeConfiguration AS NumberRangeInterval ON /* join condition not captured in parsed metadata */
;