C_InspUsgDesc
Inspection lot Usage Decision
C_InspUsgDesc is a Consumption CDS View that provides data about "Inspection lot Usage Decision" in SAP S/4HANA. It reads from 1 data source (I_InspLotUsgeDcsnTP) and exposes 27 fields with key field InspectionLot. It has 4 associations to related views. Part of development package ODATA_QM_INSPLOT.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_InspLotUsgeDcsnTP | I_InspLotUsgeDcsnTP | from |
Associations (4)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | C_InspUsgDescMng | _InspectionLot | $projection.InspectionLot = _InspectionLot.InspectionLot |
| [0..1] | C_InspUsgDescCF | _CalFields | $projection.InspectionLot = _CalFields.InspectionLot |
| [0..1] | C_InspLotUsgeDcsnCodeVH | _InspLotUsgeDcsnCodeVH | $projection.InspLotUsageDecisionCodeGroup = _InspLotUsgeDcsnCodeVH.UsageDecisionCodeGroup and $projection.InspectionLotUsageDecisionCode = _InspLotUsgeDcsnCodeVH.UsageDecisionCode and $projection.InspLotUsgeDcsnSelectedSet = _InspLotUsgeDcsnCodeVH.SelectedCodeSet and $projection.SelectedCodeSetPlant = _InspLotUsgeDcsnCodeVH.SelectedCodeSetPlant and $projection.InspectionLot = _InspLotUsgeDcsnCodeVH.InspectionLot |
| [1..1] | I_UsageDecisionCode | _UsageDecisionCode | $projection.InspLotUsageDecisionCodeGroup = _UsageDecisionCode.UsageDecisionCodeGroup and $projection.InspectionLotUsageDecisionCode = _UsageDecisionCode.UsageDecisionCode |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Inspection lot Usage Decision | view | |
| VDM.viewType | #CONSUMPTION | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.transactionalProcessingDelegated | true | view | |
| ObjectModel.createEnabled | true | view | |
| ObjectModel.updateEnabled | true | view | |
| ObjectModel.deleteEnabled | true | view | |
| ObjectModel.representativeKey | InspectionLot | view | |
| Analytics.technicalName | CINSPUSGDESC | view |
Fields (27)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InspectionLot | InspectionLot | Inspection Lot | |
| InspectionLotQualityScore | InspectionLotQualityScore | Inspection Lot Score | ||
| InspLotUsageDecisionCodeGroup | InspLotUsageDecisionCodeGroup | Usage Decision Code Group | ||
| UsageDecisionCodeText | ||||
| InspectionLotUsageDecisionCode | InspectionLotUsageDecisionCode | Usage Decision | ||
| SelectedCodeSetPlant | SelectedCodeSetPlant | |||
| InspLotUsgeDcsnSelectedSet | InspLotUsgeDcsnSelectedSet | Usage Decision Selected Set | ||
| InspLotUsageDecisionValuation | InspLotUsageDecisionValuation | |||
| InspLotUsgeDcsnFollowUpAction | InspLotUsgeDcsnFollowUpAction | |||
| InspectionLotUsageDecidedBy | InspectionLotUsageDecidedBy | Usage Decision Made By | ||
| InspectionLotUsageDecidedOn | InspectionLotUsageDecidedOn | Usage Decision Made On | ||
| InspLotUsageDecisionChangedBy | InspLotUsageDecisionChangedBy | Usage Decision Changed By | ||
| InspLotUsageDecisionChangedOn | InspLotUsageDecisionChangedOn | Usage Decision Change Date | ||
| InspLotUsgeDcsnChangedTime | InspLotUsgeDcsnChangedTime | Usage Decision Changed Time | ||
| InspLotUsageDecisionTime | InspLotUsageDecisionTime | Usage Decision Recorded at | ||
| InspLotUsageDecisionLongText | Inspection Lot Usage Decision Long Text | |||
| InspLotUsageDcsnLongTxtHistory | InspLotUsageDcsnLongTxtHistory | Inspection Lot Usage Decision Long Text History | ||
| InspLotIsCompletionForced | InspLotIsCompletionForced | |||
| _InspectionLot | _InspectionLot | |||
| _UsageDecisionCodeGroup | _UsageDecisionCodeGroup | |||
| _UsageDecisionCode | _UsageDecisionCode | |||
| _InspectionLotUsageDecidedBy | _InspectionLotUsageDecidedBy | |||
| _InspLotUsageDecisionChangedBy | _InspLotUsageDecisionChangedBy | |||
| _UsageDecisionValuation | _UsageDecisionValuation | |||
| _UsgeDcsnValuationText | _UsgeDcsnValuationText | |||
| _CalFields | _CalFields | |||
| _InspLotUsgeDcsnCodeVH | _InspLotUsgeDcsnCodeVH |
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 C_InspUsgDesc.
-- 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 C_InspUsgDesc AS
SELECT
InspectionLot,
InspectionLotQualityScore,
InspLotUsageDecisionCodeGroup,
I_InspLotUsgeDcsnTP._UsageDecisionCode._Text[1:Language=$session.system_language].UsageDecisionCodeText AS UsageDecisionCodeText,
InspectionLotUsageDecisionCode,
SelectedCodeSetPlant,
InspLotUsgeDcsnSelectedSet,
InspLotUsageDecisionValuation,
InspLotUsgeDcsnFollowUpAction,
InspectionLotUsageDecidedBy,
InspectionLotUsageDecidedOn,
InspLotUsageDecisionChangedBy,
InspLotUsageDecisionChangedOn,
InspLotUsgeDcsnChangedTime,
InspLotUsageDecisionTime,
cast (InspLotUsageDecisionLongText as vdm_insplotusagedcsnlongtext preserving type ) AS InspLotUsageDecisionLongText,
InspLotUsageDcsnLongTxtHistory,
InspLotIsCompletionForced
FROM I_InspLotUsgeDcsnTP
LEFT OUTER JOIN C_InspUsgDescMng AS _InspectionLot ON InspectionLot = _InspectionLot.InspectionLot -- association [1..1]
LEFT OUTER JOIN C_InspUsgDescCF AS _CalFields ON InspectionLot = _CalFields.InspectionLot -- association [0..1]
LEFT OUTER JOIN C_InspLotUsgeDcsnCodeVH AS _InspLotUsgeDcsnCodeVH ON InspLotUsageDecisionCodeGroup = _InspLotUsgeDcsnCodeVH.UsageDecisionCodeGroup AND InspectionLotUsageDecisionCode = _InspLotUsgeDcsnCodeVH.UsageDecisionCode AND InspLotUsgeDcsnSelectedSet = _InspLotUsgeDcsnCodeVH.SelectedCodeSet AND SelectedCodeSetPlant = _InspLotUsgeDcsnCodeVH.SelectedCodeSetPlant AND InspectionLot = _InspLotUsgeDcsnCodeVH.InspectionLot -- association [0..1]
LEFT OUTER JOIN I_UsageDecisionCode AS _UsageDecisionCode ON InspLotUsageDecisionCodeGroup = _UsageDecisionCode.UsageDecisionCodeGroup AND InspectionLotUsageDecisionCode = _UsageDecisionCode.UsageDecisionCode -- association [1..1]
;
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