C_DmndDrivenProdDscontn

DDL: C_DMNDDRIVENPRODDSCONTN SQL: CPRODDSCONTN Type: view CONSUMPTION

Demand Driven Product Discontinuation

C_DmndDrivenProdDscontn is a Consumption CDS View that provides data about "Demand Driven Product Discontinuation" in SAP S/4HANA. It reads from 1 data source (I_BufferedMaterialPlant) and exposes 8 fields with key fields Material, Plant.

Data Sources (1)

SourceAliasJoin Type
I_BufferedMaterialPlant I_BufferedMaterialPlant from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName CPRODDSCONTN view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Demand Driven Product Discontinuation view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #CONSUMPTION view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
MRPArea Plant Valuation Area
MRPController MRPController MRP Controller
MRPType MRPType MRP Type
MatlCompDiscontinuationType MatlCompDiscontinuationType Share of scrap
EffectiveOutDate EffectiveOutDate Dunning Date
FollowUpProduct FollowUpProduct Follow-Up Matl

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_DmndDrivenProdDscontn.
-- 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: CPRODDSCONTN

CREATE VIEW C_DmndDrivenProdDscontn AS
SELECT
  Material,
  Plant,
  Plant AS MRPArea,
  MRPController,
  MRPType,
  MatlCompDiscontinuationType,
  EffectiveOutDate,
  FollowUpProduct
FROM I_BufferedMaterialPlant
;