I_OperationControlProfile

DDL: I_OPERATIONCONTROLPROFILE SQL: IPPOPCONTPROF Type: view BASIC

Operation Control Profile

I_OperationControlProfile (Basic)

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

Manufacturing

I_OperationControlProfile is a Basic CDS View (Dimension) that provides data about "Operation Control Profile" in SAP S/4HANA. It reads from 1 data source (t430) and exposes 13 fields with key field OperationControlProfile. It has 2 associations to related views.

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 operation control profiles are maintained?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
t430 prof from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_OperationControlProfileText _Text $projection.OperationControlProfile = _Text.OperationControlProfile
[0..1] I_OperationExternalProcessing _OperationExternalProcessing $projection.OperationExternalProcessing = _OperationExternalProcessing.OperationExternalProcessing

Annotations (23)

NameValueLevelField
AbapCatalog.sqlViewName IPPOPCONTPROF view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.compositionRoot true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey OperationControlProfile 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 Operation Control Profile view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY OperationControlProfile Operation Control Profile
OperationExternalProcessing Operation External Processing Type
OperationIsScheduled t430 term Indicator: Scheduling
OperationIsPrinted t430 vrgd Indicator: Print
OperationIsIncludedInCosting t430 kalkz Fut. cost est.
OperationIsReworkOperation t430 rework Indicator: Rework operation
GRIsPostedAutomatically t430 autwe Indicator: Post Goods Receipt Automatically
CapacityRequirementsAreDtmnd t430 kapa Indicator: Determine capacity requirements
InspCharacteristicIsRequired t430 mrkkz Inspection Characteristics for Operation Required
OperationIsNotMESRelevant t430 not_mes_rel Not Relevant for External Manufacturing Execution System
CompletionConfirmationCode t430 ruek Completion confirmation
_OperationExternalProcessing _OperationExternalProcessing
_Text _Text

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_OperationControlProfile.
-- 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: IPPOPCONTPROF

CREATE VIEW I_OperationControlProfile AS
SELECT
  cast(prof.steus as pph_steus preserving type) AS OperationControlProfile,
  cast(prof.lief as pph_lief preserving type) AS OperationExternalProcessing,
  prof.term AS OperationIsScheduled,
  prof.vrgd AS OperationIsPrinted,
  prof.kalkz AS OperationIsIncludedInCosting,
  prof.rework AS OperationIsReworkOperation,
  prof.autwe AS GRIsPostedAutomatically,
  prof.kapa AS CapacityRequirementsAreDtmnd,
  prof.mrkkz AS InspCharacteristicIsRequired,
  prof.not_mes_rel AS OperationIsNotMESRelevant,
  prof.ruek AS CompletionConfirmationCode
FROM t430 AS prof
LEFT OUTER JOIN I_OperationControlProfileText AS _Text ON OperationControlProfile = _Text.OperationControlProfile  -- association [0..*]
LEFT OUTER JOIN I_OperationExternalProcessing AS _OperationExternalProcessing ON OperationExternalProcessing = _OperationExternalProcessing.OperationExternalProcessing  -- association [0..1]
;