I_InspectionResultAttribute

DDL: I_INSPECTIONRESULTATTRIBUTE SQL: IINSPRESATTR Type: view BASIC Package: VDM_QM_INSPECTION

Inspection Result Attributes

I_InspectionResultAttribute (Basic)

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

Manufacturing

I_InspectionResultAttribute is a Basic CDS View (Dimension) that provides data about "Inspection Result Attributes" in SAP S/4HANA. It reads from 1 data source (tq77) and exposes 3 fields with key field InspectionResultAttribute. It has 1 association 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
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
tq77 tq77 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_Inspresultattributetext _Text $projection.InspectionResultAttribute = _Text.InspectionResultAttribute

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IINSPRESATTR view
AbapCatalog.preserveKey true view
EndUserText.label Inspection Result Attributes view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE 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 (3)

KeyFieldSource TableSource FieldDescription
KEY InspectionResultAttribute tq77 attribut Attribute of Results Record (Valid, Invalid,...)
InspResultAttributeSortNmbr tq77 sortnr Sort Number
_Text _Text

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_InspectionResultAttribute.
-- 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: IINSPRESATTR

CREATE VIEW I_InspectionResultAttribute AS
SELECT
  tq77.attribut AS InspectionResultAttribute,
  tq77.sortnr AS InspResultAttributeSortNmbr
FROM tq77
LEFT OUTER JOIN I_Inspresultattributetext AS _Text ON InspectionResultAttribute = _Text.InspectionResultAttribute  -- association [0..*]
;