I_InspectionMethodVersionTP
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)
| Source | Alias | Join Type |
|---|---|---|
| I_InspectionMethodVersion | I_InspectionMethodVersion | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [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)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA