I_ProdnRsceToolControlProfile

DDL: I_PRODNRSCETOOLCONTROLPROFILE SQL: IPPPRTCONTPRFL Type: view BASIC

Production Resource Tool Control Profile

I_ProdnRsceToolControlProfile (Basic)

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

PRTControlProfile · Manufacturing

I_ProdnRsceToolControlProfile is a Basic CDS View (Dimension) that provides data about "Production Resource Tool Control Profile" in SAP S/4HANA. It reads from 1 data source (tcf10) and exposes 7 fields with key field ProdnRsceToolControlProfile. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentPP-VDM-MD
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Defining CDS Entities, Data Source for Search, Data Provider for Value Help, Data Source for Data Extraction
PackageManufacturing for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering the following business question:</p> <ul> <li><p>Which production resource tool control profiles are maintained?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
tcf10 prfl from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ProdnRsceToolControlPrflText _Text $projection.ProdnRsceToolControlProfile = _Text.ProdnRsceToolControlProfile

Annotations (23)

NameValueLevelField
AbapCatalog.sqlViewName IPPPRTCONTPRFL view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 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
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey ProdnRsceToolControlProfile 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 Production Resource Tool Control Profile view
ObjectModel.sapObjectNodeType.name PRTControlProfile view
Analytics.dataExtraction.enabled true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ProdnRsceToolControlProfile tcf10 steuf Control Profile for Management of Production Resources/Tools
ProdnRsceToolSchedgIsActv tcf10 xterm Indicator: schedule production resources/tools
ProdnRsceToolCostingIsActive tcf10 xkalk Indicator: Production resources/tools costing
ProdnRsceToolConfIsActive tcf10 xrueck Indicator: confirm production resources/tools
ProdnRsceToolPrintIsActive tcf10 xdruck Indicator: Print production resources/tools
ProdnRsceToolExpandPrintIsActv tcf10 xexpand Indicator: Expand production resources/tools
_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_ProdnRsceToolControlProfile.
-- 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: IPPPRTCONTPRFL

CREATE VIEW I_ProdnRsceToolControlProfile AS
SELECT
  prfl.steuf AS ProdnRsceToolControlProfile,
  prfl.xterm AS ProdnRsceToolSchedgIsActv,
  prfl.xkalk AS ProdnRsceToolCostingIsActive,
  prfl.xrueck AS ProdnRsceToolConfIsActive,
  prfl.xdruck AS ProdnRsceToolPrintIsActive,
  prfl.xexpand AS ProdnRsceToolExpandPrintIsActv
FROM tcf10 AS prfl
LEFT OUTER JOIN I_ProdnRsceToolControlPrflText AS _Text ON ProdnRsceToolControlProfile = _Text.ProdnRsceToolControlProfile  -- association [0..*]
;