I_MiscProdnRsceToolText

DDL: I_MISCPRODNRSCETOOLTEXT SQL: IPPMISCPRTTEXT Type: view BASIC

Miscellaneous PRT - Text

I_MiscProdnRsceToolText (Basic)

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

Manufacturing

I_MiscProdnRsceToolText is a Basic CDS View that provides data about "Miscellaneous PRT - Text" in SAP S/4HANA. It reads from 1 data source (I_ProductionResourceText) and exposes 7 fields with key fields ProductionResourceType, ProductionResourceInternalID, Language. It has 3 associations to related views.

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentPP-VDM-MD
CapabilitiesData Source in SQL Select, Language-Dependent Text, Data Source for Search, Data Source for Defining CDS Entities
PackageManufacturing for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_ProductionResourceText text from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_ProductionResourceType _ProductionResourceType $projection.ProductionResourceType = _ProductionResourceType.ProductionResourceType
[1..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_MiscPRTByInternalKey _MiscPRTByInternalKey $projection.ProductionResourceType = _MiscPRTByInternalKey.ProductionResourceType and $projection.ProductionResourceInternalID = _MiscPRTByInternalKey.ProductionResourceInternalID

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IPPMISCPRTTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey ProductionResourceInternalID view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Miscellaneous PRT - Text view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ProductionResourceType I_ProductionResourceText ProductionResourceType Production Resource Type
KEY ProductionResourceInternalID I_ProductionResourceText ProductionResourceInternalID Object ID of the resource
KEY Language I_ProductionResourceText Language Report Text Language
MiscProductionResourceToolDesc I_ProductionResourceText ProductionResourceText Production Resource Text
MiscPRTAuthorizationGroup Authorization Group
_ProductionResourceType _ProductionResourceType
_Language _Language

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_MiscProdnRsceToolText.
-- 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: IPPMISCPRTTEXT

CREATE VIEW I_MiscProdnRsceToolText AS
SELECT
  text.ProductionResourceType AS ProductionResourceType,
  text.ProductionResourceInternalID AS ProductionResourceInternalID,
  text.Language AS Language,
  text.ProductionResourceText AS MiscProductionResourceToolDesc
FROM I_ProductionResourceText AS text
LEFT OUTER JOIN I_ProductionResourceType AS _ProductionResourceType ON ProductionResourceType = _ProductionResourceType.ProductionResourceType  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [1..1]
LEFT OUTER JOIN I_MiscPRTByInternalKey AS _MiscPRTByInternalKey ON ProductionResourceType = _MiscPRTByInternalKey.ProductionResourceType AND ProductionResourceInternalID = _MiscPRTByInternalKey.ProductionResourceInternalID  -- association [1..1]
;