I_Inspresultattributetext

DDL: I_INSPRESULTATTRIBUTETEXT SQL: IINSPRESATTRT Type: view BASIC Package: VDM_QM_INSPECTION

Inspection Result Attribute - Text

I_Inspresultattributetext (Basic)

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

Manufacturing

I_Inspresultattributetext is a Basic CDS View that provides data about "Inspection Result Attribute - Text" in SAP S/4HANA. It reads from 1 data source (tq77t) and exposes 5 fields with key fields InspectionResultAttribute, Language. It has 2 associations to related views. It is exposed through 1 OData service (ASQL_F2428). 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 CDS view provides access to the inspection result attributes. The attribute of the result record indicates characteristic results or sample results as being valid or as outliers. </p>

Documentation

Data Sources (1)

SourceAliasJoin Type
tq77t tq77t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_InspectionResultAttribute _InspectionResultAttribute $projection.InspectionResultAttribute = _InspectionResultAttribute.InspectionResultAttribute

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IINSPRESATTRT view
AbapCatalog.preserveKey true view
EndUserText.label Inspection Result Attribute - Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey InspectionResultAttribute view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
Metadata.ignorePropagatedAnnotations true view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F2428 ASQL_F2428 C2 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY InspectionResultAttribute tq77t attribut Attribute of Results Record (Valid, Invalid,...)
KEY Language tq77t sprache Language Key
InspectionResultAttributeText tq77t kurztext SText insp.char
_InspectionResultAttribute _InspectionResultAttribute
_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_Inspresultattributetext.
-- 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: IINSPRESATTRT

CREATE VIEW I_Inspresultattributetext AS
SELECT
  tq77t.attribut AS InspectionResultAttribute,
  tq77t.sprache AS Language,
  tq77t.kurztext AS InspectionResultAttributeText
FROM tq77t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_InspectionResultAttribute AS _InspectionResultAttribute ON InspectionResultAttribute = _InspectionResultAttribute.InspectionResultAttribute  -- association [1..1]
;