I_InspSubsetFieldCombination
Inspection Point Field Combination
I_InspSubsetFieldCombination (Basic)
Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.
Manufacturing
I_InspSubsetFieldCombination is a Basic CDS View (Dimension) that provides data about "Inspection Point Field Combination" in SAP S/4HANA. It reads from 1 data source (tq79) and exposes 15 fields with key field InspSubsetFieldCombination. It has 4 associations to related views.
SAP API Hub
| State | C1 |
|---|---|
| Line of Business | Manufacturing |
| Application Component | QM-PT |
| Capabilities | Data Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Analytical Dimension |
| Package | Manufacturing 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
- Analytics with CDS Views — Build Analytics for S/4HANA Cloud Private Edition ABAP CDS views replicated to SAP Cloud Platform
- CDS Views on SAP Business Accelerator Hub — Explore SAP S/4HANA Cloud Private Edition Private Edition CDS Views on SAP Business Accelerator Hub
- Create CDS View as API — Create CDS views in SAP S/4HANA Cloud Private Edition and consume them as APIs
- Custom CDS Views — Access data using a Custom Core Data Service view (Custom CDS view)
- Key User Extensibility Tools — The Key User Extensibility Tools of S/4HANA
- SAP Extensibility Explorer for SAP S/4HANA Cloud Private Edition — Explore SAP S/4HANA Cloud Private Edition Extensibility options by leveraging the sample scenarios from SAP
- SAP S/4HANA Extensibility — SAP S/4HANA Extensibility Tutorial
- VDM View Types — The Virtual Data Model in SAP S/4HANA Cloud Private Edition
- View Browser — Search, browse and tag CDS Views
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tq79 | tq79 | from |
Associations (4)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_InspectionSubsetType | _InspectionSubsetType | $projection.InspectionSubsetType = _InspectionSubsetType.InspectionSubsetType |
| [0..1] | I_Plant | _SelectedCodeSetPlant | $projection.SelectedCodeSetPlant = _SelectedCodeSetPlant.Plant |
| [0..1] | I_UsageDcsnSelectedCodeSet | _UsageDcsnSelectedCodeSet | $projection.SelectedCodeSetPlant = _UsageDcsnSelectedCodeSet.SelectedCodeSetPlant and $projection.SelectedCodeSet = _UsageDcsnSelectedCodeSet.SelectedCodeSet |
| [0..*] | I_InspSubsetFieldCombinationT | _Text | $projection.InspSubsetFieldCombination = _Text.InspSubsetFieldCombination |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IINSPSSFCMB | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| EndUserText.label | Inspection Point Field Combination | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.modelingPattern | #NONE | 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 (15)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InspSubsetFieldCombination | slwbez | Identifier for Inspection Point Field Combination | |
| InspectionSubsetType | ppkttyp | Inspection Point Type | ||
| InspSbstFieldCombnIsLastValid | last_valid | Last Inspected Sample Is Valid | ||
| InspSbstLongTxtFldProperty | userc1akt | User Fld Active | ||
| InspSbstShrtTxtFldProperty | userc2akt | User Fld Active | ||
| InspSbstLongNmbrFldProperty | usern1akt | User Fld Active | ||
| InspSbstShrtNmbrFldProperty | usern2akt | User Fld Active | ||
| InspSbstDateFldProperty | userd1akt | User Fld Active | ||
| InspSbstTimeFldProperty | usert1akt | User Fld Active | ||
| SelectedCodeSet | ppvemenge | Selected Set for Inspection Point Valuation | ||
| SelectedCodeSetPlant | ppvewerk | Plant of Selected Set for Inspection Point Valuation | ||
| _InspectionSubsetType | _InspectionSubsetType | |||
| _SelectedCodeSetPlant | _SelectedCodeSetPlant | |||
| _UsageDcsnSelectedCodeSet | _UsageDcsnSelectedCodeSet | |||
| _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_InspSubsetFieldCombination.
-- 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_InspSubsetFieldCombination AS
SELECT
slwbez AS InspSubsetFieldCombination,
ppkttyp AS InspectionSubsetType,
last_valid AS InspSbstFieldCombnIsLastValid,
userc1akt AS InspSbstLongTxtFldProperty,
userc2akt AS InspSbstShrtTxtFldProperty,
usern1akt AS InspSbstLongNmbrFldProperty,
usern2akt AS InspSbstShrtNmbrFldProperty,
userd1akt AS InspSbstDateFldProperty,
usert1akt AS InspSbstTimeFldProperty,
ppvemenge AS SelectedCodeSet,
ppvewerk AS SelectedCodeSetPlant
FROM tq79
LEFT OUTER JOIN I_InspectionSubsetType AS _InspectionSubsetType ON InspectionSubsetType = _InspectionSubsetType.InspectionSubsetType -- association [0..1]
LEFT OUTER JOIN I_Plant AS _SelectedCodeSetPlant ON SelectedCodeSetPlant = _SelectedCodeSetPlant.Plant -- association [0..1]
LEFT OUTER JOIN I_UsageDcsnSelectedCodeSet AS _UsageDcsnSelectedCodeSet ON SelectedCodeSetPlant = _UsageDcsnSelectedCodeSet.SelectedCodeSetPlant AND SelectedCodeSet = _UsageDcsnSelectedCodeSet.SelectedCodeSet -- association [0..1]
LEFT OUTER JOIN I_InspSubsetFieldCombinationT AS _Text ON InspSubsetFieldCombination = _Text.InspSubsetFieldCombination -- association [0..*]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA