I_MfgInspCharcGrp

DDL: I_MFGINSPCHARCGRP SQL: IMFGINSPCHARCGRP Type: view BASIC

Characteristic Group for PIC

I_MfgInspCharcGrp is a Basic CDS View that provides data about "Characteristic Group for PIC" in SAP S/4HANA. It reads from 1 data source (qpmkgrp) and exposes 3 fields with key field InspCharcGrp. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
qpmkgrp qpmkgrp from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_MfgInspCharcGrpDesc _InspCharcGrpDesc $projection.InspCharcGrp = _InspCharcGrpDesc.InspCharcGrp and _InspCharcGrpDesc.Language = $session.system_language

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IMFGINSPCHARCGRP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Characteristic Group for PIC view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #A view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY InspCharcGrp chargroup Characteristic Group
InspCharcGrpDivnCnt divisions Number of Divisions
_InspCharcGrpDesc _InspCharcGrpDesc

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_MfgInspCharcGrp.
-- 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: IMFGINSPCHARCGRP

CREATE VIEW I_MfgInspCharcGrp AS
SELECT
  chargroup AS InspCharcGrp,
  divisions AS InspCharcGrpDivnCnt
FROM qpmkgrp
LEFT OUTER JOIN I_MfgInspCharcGrpDesc AS _InspCharcGrpDesc ON InspCharcGrp = _InspCharcGrpDesc.InspCharcGrp AND _InspCharcGrpDesc.Language = $session.system_language  -- association [0..1]
;