I_InspSampleCharcTP

DDL: I_INSPSAMPLECHARCTP SQL: IINSPSMPLCHARCTP Type: view TRANSACTIONAL

Inspection Characteristic for Inspection Point

I_InspSampleCharcTP is a Transactional CDS View that provides data about "Inspection Characteristic for Inspection Point" in SAP S/4HANA. It reads from 3 data sources (I_InspectionLot, I_InspectionOperation, I_InspSubsetCharacteristic) and exposes 21 fields with key fields InspectionLot, InspPlanOperationInternalID, InspectionCharacteristic, InspectionSubsetInternalID. It has 1 association to related views.

Data Sources (3)

SourceAliasJoin Type
I_InspectionLot _InspLot inner
I_InspectionOperation _InspOper inner
I_InspSubsetCharacteristic _InspSubsetChar from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_InspCharacteristicTP _InspCharc $projection.InspectionLot = _InspCharc.InspectionLot and $projection.InspPlanOperationInternalID = _InspCharc.InspPlanOperationInternalID and $projection.InspectionCharacteristic = _InspCharc.InspectionCharacteristic

Annotations (22)

NameValueLevelField
AbapCatalog.sqlViewName IINSPSMPLCHARCTP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Inspection Characteristic for Inspection Point view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.compositionRoot false view
ObjectModel.createEnabled false view
ObjectModel.updateEnabled EXTERNAL_CALCULATION view
ObjectModel.deleteEnabled false view
ObjectModel.transactionalProcessingEnabled true view
ObjectModel.writeActivePersistence VQASV_ACTIV view
ObjectModel.entityChangeStateId ChangedDateTime view
ObjectModel.lifecycle.enqueue.expiryBehavior #RELATIVE_TO_LAST_CHANGE view
ObjectModel.lifecycle.enqueue.expiryInterval PT15M view
ObjectModel.lifecycle.processing.expiryBehavior #RELATIVE_TO_LAST_CHANGE view
ObjectModel.lifecycle.processing.expiryInterval PT30M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY InspectionLot I_InspSubsetCharacteristic InspectionLot Inspection Lot
KEY InspPlanOperationInternalID I_InspSubsetCharacteristic InspPlanOperationInternalID Node Number
KEY InspectionCharacteristic I_InspSubsetCharacteristic InspectionCharacteristic Characteristic
KEY InspectionSubsetInternalID I_InspSubsetCharacteristic InspectionSubsetInternalID Sample Number
InspectionCharacteristicStatus I_InspSubsetCharacteristic InspectionCharacteristicStatus Status
QualityControlChart I_InspSubsetCharacteristic QualityControlChart Control Chart
InspSampleAcceptanceNumber I_InspSubsetCharacteristic InspSampleAcceptanceNumber Acceptance no.
InspSampleRejectionNumber I_InspSubsetCharacteristic InspSampleRejectionNumber Rejection no.
InspSampleValuationRule I_InspSubsetCharacteristic InspSampleValuationRule Valuation Rule
InspectionSampleSize I_InspSubsetCharacteristic InspectionSampleSize Inspect
InspLotDynRuleStage I_InspSubsetCharacteristic InspLotDynRuleStage Insp. Stage
InspectionSeverity I_InspSubsetCharacteristic InspectionSeverity Insp. Severity
InspSubsetCharcCreationDate I_InspSubsetCharacteristic InspSubsetCharcCreationDate Created On
ChangedDateTime I_InspectionLot ChangedDateTime Time Stamp
Plant I_InspectionLot Plant Valuation Area
InspectionLotType I_InspectionLot InspectionLotType Inspection Type
MatlQualityAuthorizationGroup I_InspectionLot MatlQualityAuthorizationGroup QM Matl Auth.
InspectionSubsetType I_InspectionLot InspectionSubsetType
IsBusinessPurposeCompleted I_InspectionLot IsBusinessPurposeCompleted Purpose Completed
WorkCenter
_InspCharc _InspCharc

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_InspSampleCharcTP.
-- 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: IINSPSMPLCHARCTP

CREATE VIEW I_InspSampleCharcTP AS
SELECT
  _InspSubsetChar.InspectionLot AS InspectionLot,
  _InspSubsetChar.InspPlanOperationInternalID AS InspPlanOperationInternalID,
  _InspSubsetChar.InspectionCharacteristic AS InspectionCharacteristic,
  _InspSubsetChar.InspectionSubsetInternalID AS InspectionSubsetInternalID,
  _InspSubsetChar.InspectionCharacteristicStatus AS InspectionCharacteristicStatus,
  _InspSubsetChar.QualityControlChart AS QualityControlChart,
  _InspSubsetChar.InspSampleAcceptanceNumber AS InspSampleAcceptanceNumber,
  _InspSubsetChar.InspSampleRejectionNumber AS InspSampleRejectionNumber,
  _InspSubsetChar.InspSampleValuationRule AS InspSampleValuationRule,
  _InspSubsetChar.InspectionSampleSize AS InspectionSampleSize,
  _InspSubsetChar.InspLotDynRuleStage AS InspLotDynRuleStage,
  _InspSubsetChar.InspectionSeverity AS InspectionSeverity,
  _InspSubsetChar.InspSubsetCharcCreationDate AS InspSubsetCharcCreationDate,
  _InspLot.ChangedDateTime AS ChangedDateTime,
  _InspLot.Plant AS Plant,
  _InspLot.InspectionLotType AS InspectionLotType,
  _InspLot.MatlQualityAuthorizationGroup AS MatlQualityAuthorizationGroup,
  _InspLot.InspectionSubsetType AS InspectionSubsetType,
  _InspLot.IsBusinessPurposeCompleted AS IsBusinessPurposeCompleted,
  _InspOper._WorkCenter.WorkCenter AS WorkCenter
FROM I_InspSubsetCharacteristic AS _InspSubsetChar
INNER JOIN I_InspectionLot AS _InspLot ON /* join condition not captured in parsed metadata */
INNER JOIN I_InspectionOperation AS _InspOper ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_InspCharacteristicTP AS _InspCharc ON InspectionLot = _InspCharc.InspectionLot AND InspPlanOperationInternalID = _InspCharc.InspPlanOperationInternalID AND InspectionCharacteristic = _InspCharc.InspectionCharacteristic  -- association [1..1]
;