I_QualityCostCollector

DDL: I_QUALITYCOSTCOLLECTOR SQL: IQLTYCSTCLLCTR Type: view COMPOSITE

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)

SourceAliasJoin Type
I_OrderBasic I_OrderBasic from

Annotations (10)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
;