I_MfgOrdPlanInspCharInfo

DDL: I_MFGORDPLANINSPCHARINFO SQL: IORDPIC Type: view COMPOSITE

Order PIC Info

I_MfgOrdPlanInspCharInfo is a Composite CDS View that provides data about "Order PIC Info" in SAP S/4HANA. It reads from 9 data sources. It has 4 associations to related views.

Data Sources (9)

SourceAliasJoin Type
I_QltyMgmtPlantLvlConfign _Configuration left_outer
I_InspectionCharacteristic _Inspcharspecification inner
I_InspectionOperation _InspectionOperation inner
I_InspectionResult _InspectionResult left_outer
I_InspSubsetResult _InspSampleResult left_outer
I_InspSubsetCharacteristic _InspSubsetCharacteristic left_outer
I_CharcAttributeCodeText I_CharcAttributeCodeText left_outer
I_CharcAttributeCodeText I_CharcAttributeCodeText left_outer
I_InspectionLot I_InspectionLot from

Associations (4)

CardinalityTargetAliasCondition
[0..1] I_MaterialText _MaterialText $projection.Material = _MaterialText.Material and _MaterialText.Language = $session.system_language
[1..1] I_InspectionLotStatus _I_InspectionLotStatus I_InspectionLot.StatusObject = _I_InspectionLotStatus.StatusObject and _I_InspectionLotStatus.StatusCode = 'I0224'
[0..1] I_MfgInspCharcGrp _InspCharcGrp $projection.BOOCharcGroup = _InspCharcGrp.InspCharcGrp
[0..1] I_MfgInspCharcGrpDivn _InspCharcGrpDivn $projection.BOOCharcGroup = _InspCharcGrpDivn.InspCharcGrp and $projection.BOOCharcGroupDivision = _InspCharcGrpDivn.InspCharcGrpDivn

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IORDPIC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #D view
EndUserText.label Order PIC Info view

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_MfgOrdPlanInspCharInfo.
-- 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: IORDPIC

CREATE VIEW I_MfgOrdPlanInspCharInfo AS
SELECT *  -- field list not available in parsed metadata
FROM I_InspectionLot
INNER JOIN I_InspectionOperation AS _InspectionOperation ON /* join condition not captured in parsed metadata */
INNER JOIN I_InspectionCharacteristic AS _Inspcharspecification ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_InspSubsetCharacteristic AS _InspSubsetCharacteristic ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_InspSubsetResult AS _InspSampleResult ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_InspectionResult AS _InspectionResult ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_CharcAttributeCodeText ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_QltyMgmtPlantLvlConfign AS _Configuration ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_MaterialText AS _MaterialText ON Material = _MaterialText.Material AND _MaterialText.Language = $session.system_language  -- association [0..1]
LEFT OUTER JOIN I_InspectionLotStatus AS _I_InspectionLotStatus ON I_InspectionLot.StatusObject = _I_InspectionLotStatus.StatusObject AND _I_InspectionLotStatus.StatusCode = 'I0224'  -- association [1..1]
LEFT OUTER JOIN I_MfgInspCharcGrp AS _InspCharcGrp ON BOOCharcGroup = _InspCharcGrp.InspCharcGrp  -- association [0..1]
LEFT OUTER JOIN I_MfgInspCharcGrpDivn AS _InspCharcGrpDivn ON BOOCharcGroup = _InspCharcGrpDivn.InspCharcGrp AND BOOCharcGroupDivision = _InspCharcGrpDivn.InspCharcGrpDivn  -- association [0..1]
;