I_InspSubsetFieldCombinationT

DDL: I_INSPSUBSETFIELDCOMBINATIONT Type: view BASIC

Inspection Point Field Combination - Text

I_InspSubsetFieldCombinationT (Basic)

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

Manufacturing

I_InspSubsetFieldCombinationT is a Basic CDS View that provides data about "Inspection Point Field Combination - Text" in SAP S/4HANA. It reads from 1 data source (tq79t) and exposes 14 fields with key fields InspSubsetFieldCombination, Language. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentQM-PT
CapabilitiesData Source in SQL Select, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Language-Dependent Text
PackageManufacturing for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides access to the inspection point field combinations to be able to record results for inspection points. </p>

Documentation

Data Sources (1)

SourceAliasJoin Type
tq79t tq79t from

Associations (1)

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

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IINSPSSFCMBT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Inspection Point Field Combination - Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.modelingPattern #NONE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey InspSubsetFieldCombination view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY InspSubsetFieldCombination tq79t slwbez Identifier for Inspection Point Field Combination
KEY Language tq79t sprache Language Key
InspSubsetFldCombinationTxt tq79t kurztext SText insp.char
InspSubsetMaterialSampleName tq79t phynrslw Keyword for User Field
InspSubsetEquipmentName tq79t equnrslw Keyword for User Field
InspSubsetFuncnlLocName tq79t tplnrslw Keyword for User Field
InspSubsetShopFloorItemName tq79t sfi_id_slw Keyword for User Field
InspSubsetShortTxtFieldName tq79t userc1slw Keyword for User Field
InspSubsetLongTxtFieldName tq79t userc2slw Keyword for User Field
InspSubsetDateFieldName tq79t userd1slw Keyword for User Field
InspSubsetShortNmbrFieldName tq79t usern1slw Keyword for User Field
InspSubsetLongNmbrFieldName tq79t usern2slw Keyword for User Field
InspSubsetTimeFieldName tq79t usert1slw Keyword for User Field
_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_InspSubsetFieldCombinationT.
-- 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_InspSubsetFieldCombinationT AS
SELECT
  tq79t.slwbez AS InspSubsetFieldCombination,
  tq79t.sprache AS Language,
  tq79t.kurztext AS InspSubsetFldCombinationTxt,
  tq79t.phynrslw AS InspSubsetMaterialSampleName,
  tq79t.equnrslw AS InspSubsetEquipmentName,
  tq79t.tplnrslw AS InspSubsetFuncnlLocName,
  tq79t.sfi_id_slw AS InspSubsetShopFloorItemName,
  tq79t.userc1slw AS InspSubsetShortTxtFieldName,
  tq79t.userc2slw AS InspSubsetLongTxtFieldName,
  tq79t.userd1slw AS InspSubsetDateFieldName,
  tq79t.usern1slw AS InspSubsetShortNmbrFieldName,
  tq79t.usern2slw AS InspSubsetLongNmbrFieldName,
  tq79t.usert1slw AS InspSubsetTimeFieldName
FROM tq79t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;