A_QltyFirstArticleInsp

DDL: A_QLTYFIRSTARTICLEINSP SQL: AQLTYFAI Type: view_entity COMPOSITE

First Article Inspection Data

A_QltyFirstArticleInsp is a Composite CDS View that provides data about "First Article Inspection Data" in SAP S/4HANA. It reads from 1 data source (I_QltyFirstArticleInspTP) and exposes 11 fields with key fields Material, QltyInProcmtIntID, QltyInProcmt1stArticleInsp.

Data Sources (1)

SourceAliasJoin Type
I_QltyFirstArticleInspTP _QltyFirstArticleInsp from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label First Article Inspection Data view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY QltyInProcmtIntID QltyInProcmtIntID
KEY QltyInProcmt1stArticleInsp QltyInProcmt1stArticleInsp
PurchaseOrder PurchaseOrder Purchasing Document
PurchaseOrderItem PurchaseOrderItem Purchasing Document Item
InspLotUsageDecisionValuation InspLotUsageDecisionValuation
CreatedByUser CreatedByUser User Name
CreationDate CreationDate Time Stamp
LastChangedByUser LastChangedByUser User Name
ChangedDateTime ChangedDateTime Time Stamp
_QltyInProcurement _QltyInProcurement

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 A_QltyFirstArticleInsp.
-- 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: AQLTYFAI

CREATE VIEW A_QltyFirstArticleInsp AS
SELECT
  Material,
  QltyInProcmtIntID,
  QltyInProcmt1stArticleInsp,
  PurchaseOrder,
  PurchaseOrderItem,
  InspLotUsageDecisionValuation,
  CreatedByUser,
  CreationDate,
  LastChangedByUser,
  ChangedDateTime
FROM I_QltyFirstArticleInspTP AS _QltyFirstArticleInsp
;