P_OrglChangeReportRootSOI

DDL: P_ORGLCHANGEREPORTROOTSOI Type: view_entity CONSUMPTION

Orgl Change Report Root Sales Doc Item

P_OrglChangeReportRootSOI is a Consumption CDS View that provides data about "Orgl Change Report Root Sales Doc Item" in SAP S/4HANA. It reads from 1 data source (I_ProfitCenterToSalesOrderItem) and exposes 37 fields with key fields OrganizationalChange, SalesDocument, SalesDocumentItem, ValidityStartDate. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ProfitCenterToSalesOrderItem _ProfitCenterToSalesOrderItem from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_OrglChgReassignmentStsText _OrglChgReassignmentStsText $projection.OrglChangeReassignmentStatus = _OrglChgReassignmentStsText.OrglChangeReassignmentStatus

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
VDM.private true view
VDM.viewType #CONSUMPTION view
EndUserText.label Orgl Change Report Root Sales Doc Item view

Fields (37)

KeyFieldSource TableSource FieldDescription
KEY OrganizationalChange OrganizationalChange Organizational Change
KEY SalesDocument SalesDocument SD Document
KEY SalesDocumentItem SalesDocumentItem Sales Document Item
KEY ValidityStartDate ValidityStartDate Validity Start Date
OrglChgRptRootObjectType
RootObjectID
SemanticObject
SDDocumentCategory _SalesDocumentItem SDDocumentCategory Document Cat.
ValidityEndDate ValidityEndDate ValidTo
Segment I_ProfitCenterToSalesOrderItem SegmentByOrglChange Segment number
SegmentName
SegmentBeforeOrglChange I_ProfitCenterToSalesOrderItem SegmentBeforeOrglChange
SegmentBeforeOrglChangeName
ControllingArea ControllingArea Controlling Area
ControllingAreaName _ControllingArea ControllingAreaName Long Text
CompanyCode CompanyCode Receiver Company Code
CompanyCodeName _CompanyCode CompanyCodeName Company Name
ProfitCenterBeforeOrglChange ProfitCenterBeforeOrglChange Old Profit Center
ProfitCenterBfrOrglChangeName
ProfitCenter ProfitCenter Profit Center
ProfitCenterName
OrglChangeReassignmentStatus OrglChangeReassignmentStatus Status
OrglChgReassignmentStatusName
ProfitCenterDerivationSrceType ProfitCenterDerivationSrceType Profit Center Source
SourceWBSElementInternalID SourceWBSElementInternalID Source WBS Element
_CompanyCode _CompanyCode
_ControllingArea _ControllingArea
_OrglChange _OrglChange
_OrglChgReassignmentStatus _OrglChgReassignmentStatus
_ProfitCenterBeforeOrglChange _ProfitCenterBeforeOrglChange
OrglChangeEffectiveDate I_ProfitCenterToSalesOrderItem OrglChangeEffectiveDate Effective Date
OrglChgLastDateBeforeEffDate I_ProfitCenterToSalesOrderItem OrglChgLastDateBeforeEffDate
_ProfitCtr _ProfitCtr
_ProfitCtrDerivationSrceType _ProfitCtrDerivationSrceType
_SalesDocument _SalesDocument
_SalesDocumentItem _SalesDocumentItem
_OrglChgReassignmentStsText _OrglChgReassignmentStsText

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 P_OrglChangeReportRootSOI.
-- 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.

CREATE VIEW P_OrglChangeReportRootSOI AS
SELECT
  OrganizationalChange,
  SalesDocument,
  SalesDocumentItem,
  ValidityStartDate,
  cast( 'VB' as finoc_root_object_type ) AS OrglChgRptRootObjectType,
  cast( concat( SalesDocument , concat( '/', SalesDocumentItem)) as finoc_object_id ) AS RootObjectID,
  cast( 'SalesDocument' as finoc_semantic_object ) AS SemanticObject,
  _SalesDocumentItem.SDDocumentCategory AS SDDocumentCategory,
  ValidityEndDate,
  _ProfitCenterToSalesOrderItem.SegmentByOrglChange AS Segment,
  _SegmentByOrglChange._Text[1:Language=$session.system_language].SegmentName AS SegmentName,
  _ProfitCenterToSalesOrderItem.SegmentBeforeOrglChange AS SegmentBeforeOrglChange,
  _SegmentBeforeOrglChange._Text[1:Language=$session.system_language].SegmentName AS SegmentBeforeOrglChangeName,
  ControllingArea,
  _ControllingArea.ControllingAreaName AS ControllingAreaName,
  CompanyCode,
  _CompanyCode.CompanyCodeName AS CompanyCodeName,
  ProfitCenterBeforeOrglChange,
  _ProfitCenterBeforeOrglChange._Text[1:Language=$session.system_language].ProfitCenterName AS ProfitCenterBfrOrglChangeName,
  ProfitCenter,
  _ProfitCtr._Text[1:Language=$session.system_language].ProfitCenterName AS ProfitCenterName,
  OrglChangeReassignmentStatus,
  _OrglChgReassignmentStsText[1:Language=$session.system_language].OrglChgReassignmentStatusName AS OrglChgReassignmentStatusName,
  ProfitCenterDerivationSrceType,
  SourceWBSElementInternalID,
  _ProfitCenterToSalesOrderItem.OrglChangeEffectiveDate AS OrglChangeEffectiveDate,
  _ProfitCenterToSalesOrderItem.OrglChgLastDateBeforeEffDate AS OrglChgLastDateBeforeEffDate
FROM I_ProfitCenterToSalesOrderItem AS _ProfitCenterToSalesOrderItem
LEFT OUTER JOIN I_OrglChgReassignmentStsText AS _OrglChgReassignmentStsText ON OrglChangeReassignmentStatus = _OrglChgReassignmentStsText.OrglChangeReassignmentStatus  -- association [0..*]
;