I_ControlRecipeDestination

DDL: I_CONTROLRECIPEDESTINATION SQL: IPPCTRLRECDEST Type: view BASIC

Control Recipe Destination

I_ControlRecipeDestination (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Control Recipe Destination · Manufacturing

I_ControlRecipeDestination is a Basic CDS View (Dimension) that provides data about "Control Recipe Destination" in SAP S/4HANA. It reads from 1 data source (tc52) and exposes 8 fields with key fields Plant, ControlRecipeDestination. It has 2 associations to related views.

SAP Help Documentation

CategoryCDS Views for Process Industries
Data CategoryBasic, Dimension
StatusReleased
Purpose
This CDS view provides the prerequisites for answering the following business questions: Which control recipe destinations are maintained in a plant? Of which types are the control recipe destinations in a plant?

Structure
Measures and attributes The following main attributes are provided: Plant Control recipe destination Control recipe destination type Name of control recipe destination

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentPP-VDM
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Defining CDS Entities, Data Source for Search
PackageManufacturing for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li><p>Which control recipe destinations are maintained in a plant?</p></li> <li><p>Of which types are the control recipe destinations in a plant?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
tc52 tc52 from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant
[1..1] I_ControlRecipeDestinationType _Type $projection.ControlRecipeDestinationType = _Type.ControlRecipeDestinationType

Annotations (24)

NameValueLevelField
AbapCatalog.sqlViewName IPPCTRLRECDEST view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 002 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
ClientHandling.type #CLIENT_DEPENDENT view
Consumption.ranked true view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey ControlRecipeDestination view
ObjectModel.sapObjectNodeType.name ControlRecipeDestination view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Control Recipe Destination view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Plant tc52 werks Receiving Plant
KEY ControlRecipeDestination Control Recipe Destination
ControlRecipeDestinationType tc52 comty Type of Control Recipe Destination
ControlRecipeDestinationName tc52 sebez Description of the Control Recipe Destination
DigitalSignatureIsRequired tc52 elec_sign Digital Signature in the PI Sheet
NumberOfPhasesDisplayed tc52 vis_phases Number of Phases Displayed in a PI Sheet
_Plant _Plant
_Type _Type

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_ControlRecipeDestination.
-- 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: IPPCTRLRECDEST

CREATE VIEW I_ControlRecipeDestination AS
SELECT
  tc52.werks AS Plant,
  cast(tc52.phseq as vdm_phseq preserving type) AS ControlRecipeDestination,
  tc52.comty AS ControlRecipeDestinationType,
  tc52.sebez AS ControlRecipeDestinationName,
  tc52.elec_sign AS DigitalSignatureIsRequired,
  tc52.vis_phases AS NumberOfPhasesDisplayed
FROM tc52
LEFT OUTER JOIN I_Plant AS _Plant ON Plant = _Plant.Plant  -- association [1..1]
LEFT OUTER JOIN I_ControlRecipeDestinationType AS _Type ON ControlRecipeDestinationType = _Type.ControlRecipeDestinationType  -- association [1..1]
;