I_InspectionPlanTP_2

DDL: I_INSPECTIONPLANTP_2 Type: view_entity TRANSACTIONAL Package: VDM_QM_PLANNING

Inspection Plan Header - TP

I_InspectionPlanTP_2 is a Transactional CDS View that provides data about "Inspection Plan Header - TP" in SAP S/4HANA. It reads from 1 data source (R_InspectionPlanTP) and exposes 8 fields with key fields InspectionPlanGroup, InspectionPlan. Part of development package VDM_QM_PLANNING.

Data Sources (1)

SourceAliasJoin Type
R_InspectionPlanTP R_InspectionPlanTP projection

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Inspection Plan Header - TP view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name InspectionPlan view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #TRANSACTIONAL view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY InspectionPlanGroup InspectionPlanGroup
KEY InspectionPlan InspectionPlan
HasChangeNumber HasChangeNumber
IsMarkedForDeletion IsMarkedForDeletion Purch.org. data
LastChangeDate LastChangeDate Time Stamp
LastChangeTime LastChangeTime Time changed
LastChangedByUser LastChangedByUser User Name
ChangedDateTime ChangedDateTime Time Stamp

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_InspectionPlanTP_2.
-- 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.

CREATE VIEW I_InspectionPlanTP_2 AS
SELECT
  InspectionPlanGroup,
  InspectionPlan,
  HasChangeNumber,
  IsMarkedForDeletion,
  LastChangeDate,
  LastChangeTime,
  LastChangedByUser,
  ChangedDateTime
FROM R_InspectionPlanTP
;