I_InspSpecVersionTextTP

DDL: I_INSPSPECVERSIONTEXTTP Type: view_entity TRANSACTIONAL

Inspection Specification Version Text

I_InspSpecVersionTextTP is a Transactional CDS View that provides data about "Inspection Specification Version Text" in SAP S/4HANA. It reads from 1 data source (I_InspSpecificationVersionText) and exposes 10 fields with key fields InspectionSpecificationPlant, InspectionSpecification, InspectionSpecificationVersion, Language.

Data Sources (1)

SourceAliasJoin Type
I_InspSpecificationVersionText I_InspSpecificationVersionText from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Inspection Specification Version Text view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey InspectionSpecificationVersion view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY InspectionSpecificationPlant InspectionSpecificationPlant Version
KEY InspectionSpecification InspectionSpecification Master IC
KEY InspectionSpecificationVersion InspectionSpecificationVersion XML Vers.
KEY Language Language Report Text Language
InspectionSpecificationText InspectionSpecificationText
_InspSpecification _InspSpecification
_InspSpecificationVersion _InspSpecificationVersion
_InspSpecificationPlant _InspSpecificationPlant
_InspectionSpecification _InspectionSpecification
_Language _Language

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_InspSpecVersionTextTP.
-- 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_InspSpecVersionTextTP AS
SELECT
  InspectionSpecificationPlant,
  InspectionSpecification,
  InspectionSpecificationVersion,
  Language,
  InspectionSpecificationText
FROM I_InspSpecificationVersionText
;