A_InspPlanOpPRT

DDL: A_INSPPLANOPPRT SQL: AINSPOPPRT Type: view_entity COMPOSITE

PRT Assignments

A_InspPlanOpPRT is a Composite CDS View that provides data about "PRT Assignments" in SAP S/4HANA. It reads from 1 data source (I_InspPlanOpPRT) and exposes 50 fields with key fields InspectionPlanGroup, InspectionPlan, InspectionPlanInternalVersion, BOOOpInternalVersionCounter, BOOOperationInternalID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_InspPlanOpPRT I_InspPlanOpPRT from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_InspectionPlan _InspPlan $projection.InspectionPlanGroup = _InspPlan.InspectionPlanGroup and $projection.InspectionPlanInternalVersion = _InspPlan.InspectionPlanInternalVersion and $projection.InspectionPlan = _InspPlan.InspectionPlan

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label PRT Assignments view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (50)

KeyFieldSource TableSource FieldDescription
KEY InspectionPlanGroup InspectionPlanGroup Group
KEY InspectionPlan InspectionPlan Group Counter
KEY InspectionPlanInternalVersion InspectionPlanInternalVersion
KEY BOOOpInternalVersionCounter BOOOpInternalVersionCounter Counter
KEY BOOOperationInternalID BOOOperationInternalID Task list node
KEY BOOOperationPRTInternalID BOOOperationPRTInternalID
BillOfOperationsSequence BillOfOperationsSequence Sequence
BillOfOperationsType BillOfOperationsType Task List Type
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
ProductionResourceType ProductionResourceType Object Type
ProductionResourceInternalID ProductionResourceInternalID Object ID
ProdnRsceToolCategoryName ProdnRsceToolCategoryName Description
ProductionResourceTool ProductionResourceTool PRT
ProductionResourceToolDesc ProductionResourceToolDesc Description
ProdnRsceToolCategory ProdnRsceToolCategory
Equipment Equipment Equipment check
EquipmentName EquipmentName Tech. Obj. Desc
ChangeNumber ChangeNumber Change Number
ProdnRsceToolItemNumber ProdnRsceToolItemNumber Item Number
ProdnRsceToolControlProfile ProdnRsceToolControlProfile
ProdnRsceToolStandardTextCode ProdnRsceToolStandardTextCode
ProdnRsceToolText ProdnRsceToolText
CreationDate CreationDate Time Stamp
CreatedByUser CreatedByUser User Name
LastChangeDate LastChangeDate Time Stamp
LastChangedByUser LastChangedByUser User Name
IsDeleted IsDeleted TRUE
IsImplicitlyDeleted IsImplicitlyDeleted
ProdnRsceToolStdWorkQtyUnit ProdnRsceToolStdWorkQtyUnit Unit
ProdnRsceToolStandardWorkQty ProdnRsceToolStandardWorkQty Quantity
ProdnRsceToolTotQtyCalcFormula ProdnRsceToolTotQtyCalcFormula
ProdnRsceToolUsageQuantityUnit ProdnRsceToolUsageQuantityUnit
ProdnRsceToolUsageQuantity ProdnRsceToolUsageQuantity
ProdnRsceToolUsageQtyCalcFmla ProdnRsceToolUsageQtyCalcFmla
StartDateOffsetReferenceCode StartDateOffsetReferenceCode
StartDateOffsetDurationUnit StartDateOffsetDurationUnit
StartDateOffsetDuration StartDateOffsetDuration
EndDateOffsetReferenceCode EndDateOffsetReferenceCode
EndDateOffsetDurationUnit EndDateOffsetDurationUnit
EndDateOffsetDuration EndDateOffsetDuration
BillOfOperationsVersion BillOfOperationsVersion Routing Version
Plant _InspPlanOp Plant Valuation Area
DocumentInfoRecord DocumentInfoRecord Document
DocumentType DocumentType Order Type
DocumentPart DocumentPart Document Part
DocumentVersion DocumentVersion Docu. Version
ChangedDateTime _InspPlanOp ChangedDateTime Time Stamp
_InspPlanOp _InspPlanOp
_InspPlan _InspPlan

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 A_InspPlanOpPRT.
-- 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: AINSPOPPRT

CREATE VIEW A_InspPlanOpPRT AS
SELECT
  InspectionPlanGroup,
  InspectionPlan,
  InspectionPlanInternalVersion,
  BOOOpInternalVersionCounter,
  BOOOperationInternalID,
  BOOOperationPRTInternalID,
  BillOfOperationsSequence,
  BillOfOperationsType,
  ValidityStartDate,
  ValidityEndDate,
  ProductionResourceType,
  ProductionResourceInternalID,
  ProdnRsceToolCategoryName,
  ProductionResourceTool,
  ProductionResourceToolDesc,
  ProdnRsceToolCategory,
  Equipment,
  EquipmentName,
  ChangeNumber,
  ProdnRsceToolItemNumber,
  ProdnRsceToolControlProfile,
  ProdnRsceToolStandardTextCode,
  ProdnRsceToolText,
  CreationDate,
  CreatedByUser,
  LastChangeDate,
  LastChangedByUser,
  IsDeleted,
  IsImplicitlyDeleted,
  ProdnRsceToolStdWorkQtyUnit,
  ProdnRsceToolStandardWorkQty,
  ProdnRsceToolTotQtyCalcFormula,
  ProdnRsceToolUsageQuantityUnit,
  ProdnRsceToolUsageQuantity,
  ProdnRsceToolUsageQtyCalcFmla,
  StartDateOffsetReferenceCode,
  StartDateOffsetDurationUnit,
  StartDateOffsetDuration,
  EndDateOffsetReferenceCode,
  EndDateOffsetDurationUnit,
  EndDateOffsetDuration,
  BillOfOperationsVersion,
  _InspPlanOp.Plant AS Plant,
  DocumentInfoRecord,
  DocumentType,
  DocumentPart,
  DocumentVersion,
  _InspPlanOp.ChangedDateTime AS ChangedDateTime
FROM I_InspPlanOpPRT
LEFT OUTER JOIN A_InspectionPlan AS _InspPlan ON InspectionPlanGroup = _InspPlan.InspectionPlanGroup AND InspectionPlanInternalVersion = _InspPlan.InspectionPlanInternalVersion AND InspectionPlan = _InspPlan.InspectionPlan  -- association [1..1]
;