I_InspectionMethodVersionTP

DDL: I_INSPECTIONMETHODVERSIONTP SQL: IINSPMETHVERSTP Type: view TRANSACTIONAL

Inspection Method Version

I_InspectionMethodVersionTP is a Transactional CDS View that provides data about "Inspection Method Version" in SAP S/4HANA. It reads from 1 data source (I_InspectionMethodVersion) and exposes 30 fields with key fields InspectionMethodPlant, InspectionMethod, InspectionMethodVersion. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_InspectionMethodVersion I_InspectionMethodVersion from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_InspMethInspSpecTP _InspectionSpecification $projection.InspectionMethodPlant = _InspectionSpecification.InspectionMethodPlant and $projection.InspectionMethod = _InspectionSpecification.InspectionMethod and $projection.InspectionMethodVersion = _InspectionSpecification.InspectionMethodVersion
[0..1] E_InspectionMethodVersion _Extension $projection.InspectionMethod = _Extension.InspectionMethod and $projection.InspectionMethodVersion = _Extension.InspectionMethodVersion and $projection.InspectionMethodPlant = _Extension.InspectionMethodPlant

Annotations (24)

NameValueLevelField
AbapCatalog.sqlViewName IINSPMETHVERSTP view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Inspection Method Version view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.representativeKey InspectionMethodVersion view
ObjectModel.sapObjectNodeType.name InspectionMethod view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.compositionRoot true view
ObjectModel.createEnabled false view
ObjectModel.updateEnabled false view
ObjectModel.deleteEnabled false view
ObjectModel.transactionalProcessingEnabled true view
ObjectModel.draftEnabled true view
ObjectModel.writeDraftPersistence QINSMETH_D 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

Fields (30)

KeyFieldSource TableSource FieldDescription
KEY InspectionMethodPlant InspectionMethodPlant Receiving Plant
KEY InspectionMethod InspectionMethod Insp. Method
KEY InspectionMethodVersion InspectionMethodVersion XML Vers.
InspectionMethodValidFromDate InspectionMethodValidFromDate Valid From
InspectionMethodSearchField InspectionMethodSearchField Search Field
InspectionMethodStatus InspectionMethodStatus Status
InspectorQualification InspectorQualification Inspctr qualif.
InspMethInformationField1 InspMethInformationField1 Info Field 1
InspMethInformationField2 InspMethInformationField2 Info Field 2
InspMethInformationField3 InspMethInformationField3 Info Field 3
QltyMstrDataAuthorizationGroup QltyMstrDataAuthorizationGroup QM Matl Auth.
CreatedByUser CreatedByUser User Name
CreationDate CreationDate Time Stamp
LastChangedByUser LastChangedByUser User Name
LastChangeDate LastChangeDate Time Stamp
ChangedDateTime ChangedDateTime Time Stamp
_InspectionSpecification _InspectionSpecification
_InspectionMethod _InspectionMethod
_InspectionMethodText _InspectionMethodText
_InspectionMethodPlant _InspectionMethodPlant
_InspectionMethodStatus _InspectionMethodStatus
_InspectionMethodStatusText _InspectionMethodStatusText
_InspectorQualification _InspectorQualification
_InspectorQualificationText _InspectorQualificationText
_QltyMstrDataAuthznGrp _QltyMstrDataAuthznGrp
_QltyMstrDataAuthznGrpTxt _QltyMstrDataAuthznGrpTxt
_InspMethCreatedByUser _InspMethCreatedByUser
_InspMethLastChangedByUser _InspMethLastChangedByUser
_CreatedByUserContactCard _CreatedByUserContactCard
_LastChangedByUserContactCard _LastChangedByUserContactCard

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_InspectionMethodVersionTP.
-- 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: IINSPMETHVERSTP

CREATE VIEW I_InspectionMethodVersionTP AS
SELECT
  InspectionMethodPlant,
  InspectionMethod,
  InspectionMethodVersion,
  InspectionMethodValidFromDate,
  InspectionMethodSearchField,
  InspectionMethodStatus,
  InspectorQualification,
  InspMethInformationField1,
  InspMethInformationField2,
  InspMethInformationField3,
  QltyMstrDataAuthorizationGroup,
  CreatedByUser,
  CreationDate,
  LastChangedByUser,
  LastChangeDate,
  ChangedDateTime
FROM I_InspectionMethodVersion
LEFT OUTER JOIN I_InspMethInspSpecTP AS _InspectionSpecification ON InspectionMethodPlant = _InspectionSpecification.InspectionMethodPlant AND InspectionMethod = _InspectionSpecification.InspectionMethod AND InspectionMethodVersion = _InspectionSpecification.InspectionMethodVersion  -- association [0..*]
LEFT OUTER JOIN E_InspectionMethodVersion AS _Extension ON InspectionMethod = _Extension.InspectionMethod AND InspectionMethodVersion = _Extension.InspectionMethodVersion AND InspectionMethodPlant = _Extension.InspectionMethodPlant  -- association [0..1]
;