I_MsrgPointPRTByInternalKey

DDL: I_MSRGPOINTPRTBYINTERNALKEY SQL: IPPMSRGPRTIK Type: view BASIC

Measuring Point PRT by internal key

I_MsrgPointPRTByInternalKey is a Basic CDS View (Dimension) that provides data about "Measuring Point PRT by internal key" in SAP S/4HANA. It reads from 3 data sources (crvp_a, imptt, I_ProdnRsceToolMasterData) and exposes 39 fields with key fields ProductionResourceType, ProductionResourceInternalID. It has 2 associations to related views.

Data Sources (3)

SourceAliasJoin Type
crvp_a crvp_a inner
imptt imptt inner
I_ProdnRsceToolMasterData PRT from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_MeasuringPoint _MeasuringPoint $projection.MeasuringPoint = _MeasuringPoint.MeasuringPoint
[1..1] I_MsrgPointProdnRsceTool _MsrgPointProdnRsceTool $projection.MeasuringPoint = _MsrgPointProdnRsceTool.MeasuringPoint

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IPPMSRGPRTIK view
VDM.viewType #BASIC view
ObjectModel.representativeKey ProductionResourceInternalID view
ObjectModel.semanticKey MeasuringPoint view
Analytics.dataCategory #DIMENSION view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Measuring Point PRT by internal key view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
Metadata.allowExtensions true view

Fields (39)

KeyFieldSource TableSource FieldDescription
KEY ProductionResourceType I_ProdnRsceToolMasterData ProductionResourceType Object Type
KEY ProductionResourceInternalID I_ProdnRsceToolMasterData ProductionResourceInternalID Object ID
MeasuringPoint
ProductionResourceToolGroup1 I_ProdnRsceToolMasterData ProductionResourceToolGroup1 Grouping Key 1
ProductionResourceToolGroup2 I_ProdnRsceToolMasterData ProductionResourceToolGroup2 Grouping Key 2
ProductionResourceUsage I_ProdnRsceToolMasterData ProductionResourceUsage Usage
ProdnRsceToolControlProfile ProdnRsceToolControlProfile PRT Control Profile
ChangeNumber I_ProdnRsceToolMasterData ChangeNumber Change Number
ProdnRsceToolStandardTextCode ProdnRsceToolStandardTextCode Std Text Key
ProdnRsceToolTotQtyCalcFormula ProdnRsceToolTotQtyCalcFormula Formula
ProdnRsceToolUsageQtyCalcFmla ProdnRsceToolUsageQtyCalcFmla Formula
StartDateOffsetReferenceCode StartDateOffsetReferenceCode
EndDateOffsetReferenceCode EndDateOffsetReferenceCode
AuthorizationGroup imptt begru AuthorizGroup
StartDateOffsetDuration StartDateOffsetDuration
StartDateOffsetDurationUnit StartDateOffsetDurationUnit Unit
EndDateOffsetDuration EndDateOffsetDuration
EndDateOffsetDurationUnit EndDateOffsetDurationUnit Unit
CreationDate CreationDate Time Stamp
CreatedByUser CreatedByUser User Name
LastChangeDate LastChangeDate Time Stamp
LastChangedByUser LastChangedByUser User Name
_ProductionResourceType _ProductionResourceType
_MeasuringPoint _MeasuringPoint
_MsrgPointProdnRsceTool _MsrgPointProdnRsceTool
_ProdnRsceToolGroup1 _ProdnRsceToolGroup1
_ProdnRsceToolGroup2 _ProdnRsceToolGroup2
_ProductionResourceUsage _ProductionResourceUsage
_ProdnRsceToolControlProfile _ProdnRsceToolControlProfile
_ProdnRsceToolStandardText _ProdnRsceToolStandardText
_ProdnRsceToolTotQtyCalcFmla _ProdnRsceToolTotQtyCalcFmla
_ProdnRsceToolUsageQtyCalcFmla _ProdnRsceToolUsageQtyCalcFmla
_StartDateOffsetReferenceCode _StartDateOffsetReferenceCode
_EndDateOffsetReferenceCode _EndDateOffsetReferenceCode
_StartDateOffsetDurationUnit _StartDateOffsetDurationUnit
_EndDateOffsetDurationUnit _EndDateOffsetDurationUnit
_CreatedByUser _CreatedByUser
_LastChangedByUser _LastChangedByUser
_ChangeMaster _ChangeMaster

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_MsrgPointPRTByInternalKey.
-- 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: IPPMSRGPRTIK

CREATE VIEW I_MsrgPointPRTByInternalKey AS
SELECT
  PRT.ProductionResourceType AS ProductionResourceType,
  PRT.ProductionResourceInternalID AS ProductionResourceInternalID,
  cast(crvp_a.meas_point as pph_imrc_point preserving type) AS MeasuringPoint,
  PRT.ProductionResourceToolGroup1 AS ProductionResourceToolGroup1,
  PRT.ProductionResourceToolGroup2 AS ProductionResourceToolGroup2,
  PRT.ProductionResourceUsage AS ProductionResourceUsage,
  ProdnRsceToolControlProfile,
  PRT.ChangeNumber AS ChangeNumber,
  ProdnRsceToolStandardTextCode,
  ProdnRsceToolTotQtyCalcFormula,
  ProdnRsceToolUsageQtyCalcFmla,
  StartDateOffsetReferenceCode,
  EndDateOffsetReferenceCode,
  imptt.begru AS AuthorizationGroup,
  StartDateOffsetDuration,
  StartDateOffsetDurationUnit,
  EndDateOffsetDuration,
  EndDateOffsetDurationUnit,
  CreationDate,
  CreatedByUser,
  LastChangeDate,
  LastChangedByUser
FROM I_ProdnRsceToolMasterData AS PRT
INNER JOIN crvp_a ON /* join condition not captured in parsed metadata */
INNER JOIN imptt ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_MeasuringPoint AS _MeasuringPoint ON MeasuringPoint = _MeasuringPoint.MeasuringPoint  -- association [1..1]
LEFT OUTER JOIN I_MsrgPointProdnRsceTool AS _MsrgPointProdnRsceTool ON MeasuringPoint = _MsrgPointProdnRsceTool.MeasuringPoint  -- association [1..1]
;