I_DfctChgRecdType

DDL: I_DFCTCHGRECDTYPE SQL: IDFCTCRTYPE Type: view COMPOSITE

Chg Recd types for defect

I_DfctChgRecdType is a Composite CDS View that provides data about "Chg Recd types for defect" in SAP S/4HANA. It reads from 8 data sources and exposes 2 fields with key field ChangeRecordType.

Data Sources (8)

SourceAliasJoin Type
I_ChangeRecordItemRel ItemRelDef inner
I_ChangeRecordItemRel ItemRelMBOM inner
I_ChangeRecordItemRel ItemRelPrn inner
I_ChangeRecordItemRel ItemRelRou inner
I_ChangeRecordRefObj RefObjDef inner
I_ChangeRecordRefObj RefObjMBOM inner
I_ChangeRecordRefObj RefObjPrn inner
I_ChangeRecordRefObj RefObjRou inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IDFCTCRTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Chg Recd types for defect 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

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ChangeRecordType CRType ChangeRecordType Record Type
ChangeRecordTypeDesc CRType ChangeRecordTypeDesc

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_DfctChgRecdType.
-- 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: IDFCTCRTYPE

CREATE VIEW I_DfctChgRecdType AS
SELECT
  CRType.ChangeRecordType AS ChangeRecordType,
  CRType.ChangeRecordTypeDesc AS ChangeRecordTypeDesc
INNER JOIN I_ChangeRecordRefObj AS RefObjDef 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 RefObjRou ON /* join condition not captured in parsed metadata */
INNER JOIN I_ChangeRecordRefObj AS RefObjPrn ON /* join condition not captured in parsed metadata */
INNER JOIN I_ChangeRecordItemRel AS ItemRelDef 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 ItemRelRou ON /* join condition not captured in parsed metadata */
INNER JOIN I_ChangeRecordItemRel AS ItemRelPrn ON /* join condition not captured in parsed metadata */
;