I_QualityCostCollector
QM Order
I_QualityCostCollector is a Composite CDS View that provides data about "QM Order" in SAP S/4HANA. It reads from 1 data source (I_OrderBasic) and exposes 63 fields with key field OrderID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_OrderBasic | I_OrderBasic | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IQLTYCSTCLLCTR | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| EndUserText.label | QM Order | view |
Fields (63)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OrderID | OrderID | Order ID | |
| OrderCategory | OrderCategory | Order Category | ||
| OrderType | OrderType | Order Type | ||
| OrderDescription | OrderDescription | |||
| OrderHasLongText | OrderHasLongText | Order Has Long Text | ||
| IsMarkedForDeletion | IsMarkedForDeletion | Purch.org. data | ||
| IsStatisticalOrder | IsStatisticalOrder | Statistical Order | ||
| OrdIsUsedInIntegratedPlanning | OrdIsUsedInIntegratedPlanning | Plan-Integrated Order | ||
| CreationDate | CreationDate | Time Stamp | ||
| CreationTime | CreationTime | Time of Change | ||
| CreatedByUser | CreatedByUser | User Name | ||
| LastChangeDate | LastChangeDate | Time Stamp | ||
| LastChangeTime | LastChangeTime | Time changed | ||
| LastChangedByUser | LastChangedByUser | User Name | ||
| Currency | Currency | Valuation Crcy | ||
| ReferenceOrder | ReferenceOrder | Reference Order | ||
| Plant | Plant | Valuation Area | ||
| BusinessArea | BusinessArea | Business Area | ||
| CompanyCode | CompanyCode | Receiver Company Code | ||
| RequestingCompanyCode | RequestingCompanyCode | Req. co.code | ||
| ControllingArea | ControllingArea | Controlling Area | ||
| ProfitCenter | ProfitCenter | Profit Center | ||
| CostCenter | CostCenter | Cost Center | ||
| RequestingCostCenter | RequestingCostCenter | Req.cost center | ||
| ResponsibleCostCenter | ResponsibleCostCenter | Responsible Cost Center | ||
| CostElement | CostElement | G/L Account | ||
| GLAccount | GLAccount | General Ledger | ||
| ProductCostCollector | ProductCostCollector | Cost Object | ||
| ConditionUsage | ConditionUsage | Usage | ||
| ConditionApplication | ConditionApplication | Application | ||
| CostingSheet | CostingSheet | Costing Sheet | ||
| ControllingObjectClass | ControllingObjectClass | Object Class | ||
| FunctionalArea | FunctionalArea | Sendr Fctl Area | ||
| OrderProcessingGroup | OrderProcessingGroup | Processing Group | ||
| OverheadCode | OverheadCode | Overhead Key | ||
| ObjectInternalID | ObjectInternalID | Object number | ||
| _BusinessArea | _BusinessArea | |||
| _CompanyCode | _CompanyCode | |||
| _ConditionApplication | _ConditionApplication | |||
| _ConditionUsage | _ConditionUsage | |||
| _ControllingArea | _ControllingArea | |||
| _ControllingObjectClass | _ControllingObjectClass | |||
| _CostCenter | _CostCenter | |||
| _CostElement | _CostElement | |||
| _CostingSheetProcedure | _CostingSheetProcedure | |||
| _CreatedByUser | _CreatedByUser | |||
| _Currency | _Currency | |||
| _FunctionalArea | _FunctionalArea | |||
| _GLAccount | _GLAccount | |||
| _LastChangedByUser | _LastChangedByUser | |||
| _LogisticsOrder | _LogisticsOrder | |||
| _LongText | _LongText | |||
| _OrderCategory | _OrderCategory | |||
| _OrderHierarchyNode | _OrderHierarchyNode | |||
| _OrderProcessingGroup | _OrderProcessingGroup | |||
| _OrderType | _OrderType | |||
| _Plant | _Plant | |||
| _ProductCostCtrlgOrder | _ProductCostCtrlgOrder | |||
| _ProfitCenter | _ProfitCenter | |||
| _ReferenceOrder | _ReferenceOrder | |||
| _RequestingCompanyCode | _RequestingCompanyCode | |||
| _RequestingCostCenter | _RequestingCostCenter | |||
| _ResponsibleCostCenter | _ResponsibleCostCenter |
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_QualityCostCollector.
-- 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: IQLTYCSTCLLCTR
CREATE VIEW I_QualityCostCollector AS
SELECT
OrderID,
OrderCategory,
OrderType,
OrderDescription,
OrderHasLongText,
IsMarkedForDeletion,
IsStatisticalOrder,
OrdIsUsedInIntegratedPlanning,
CreationDate,
CreationTime,
CreatedByUser,
LastChangeDate,
LastChangeTime,
LastChangedByUser,
Currency,
ReferenceOrder,
Plant,
BusinessArea,
CompanyCode,
RequestingCompanyCode,
ControllingArea,
ProfitCenter,
CostCenter,
RequestingCostCenter,
ResponsibleCostCenter,
CostElement,
GLAccount,
ProductCostCollector,
ConditionUsage,
ConditionApplication,
CostingSheet,
ControllingObjectClass,
FunctionalArea,
OrderProcessingGroup,
OverheadCode,
ObjectInternalID
FROM I_OrderBasic
;
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