I_InspectionSubsetTypeText

DDL: I_INSPECTIONSUBSETTYPETEXT Type: view_entity BASIC Package: VDM_QM_INSPECTION

Inspection Point Type - Text

I_InspectionSubsetTypeText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Manufacturing

I_InspectionSubsetTypeText is a Basic CDS View that provides data about "Inspection Point Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields InspectionSubsetType, Language. It has 2 associations to related views. Part of development package VDM_QM_INSPECTION.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessManufacturing
Application ComponentQM-IM-2CL
CapabilitiesData Source in SQL Select,Association Target for Defining CDS Entities,Data Source for Defining CDS Entities,Language-Dependent Text
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageManufacturing for SAP S/4HANA Cloud Public Edition
Description <p>This view provides supported values for inspection point types.</p> The values and their meanings are:Supported domain values Value Meaning Freely-Defined Inspection Point

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_InspectionSubsetType _InspectionSubsetType $projection.InspectionSubsetType = _InspectionSubsetType.InspectionSubsetType

Annotations (11)

NameValueLevelField
EndUserText.label Inspection Point Type - Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey InspectionSubsetType view
Analytics.technicalName IINSPSUBSETTYPET view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY InspectionSubsetType Inspection Point Type
KEY Language ddlanguage Language Key
InspectionSubsetTypeText Inspection Point Type Text
_InspectionSubsetType _InspectionSubsetType
_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_InspectionSubsetTypeText.
-- 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_InspectionSubsetTypeText AS
SELECT
  cast ( substring( domvalue_l, 1, 1 ) as vdm_qppkttyp preserving type ) AS InspectionSubsetType,
  ddlanguage AS Language,
  cast( ddtext as vdm_qppkttyp_text preserving type ) AS InspectionSubsetTypeText
FROM dd07t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_InspectionSubsetType AS _InspectionSubsetType ON InspectionSubsetType = _InspectionSubsetType.InspectionSubsetType  -- association [1..1]
;