I_OrglChangeProjectTP

DDL: I_ORGLCHANGEPROJECTTP Type: view_entity TRANSACTIONAL

Organizational Change Projects - TP

I_OrglChangeProjectTP is a Transactional CDS View that provides data about "Organizational Change Projects - TP" in SAP S/4HANA. It reads from 1 data source (R_OrglChangeProjectTP) and exposes 8 fields with key fields OrganizationalChange, ProjectInternalID.

Data Sources (1)

SourceAliasJoin Type
R_OrglChangeProjectTP R_OrglChangeProjectTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Organizational Change Projects - TP view
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.modelingPattern #TRANSACTIONAL_INTERFACE view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY OrganizationalChange OrganizationalChange Organizational Change
KEY ProjectInternalID ProjectInternalID Project Def.
ProjectExternalID ProjectExternalID Project def.
ControllingArea ControllingArea Controlling Area
ProfitCenter ProfitCenter Profit Center
ProfitCenterByOrglChange ProfitCenterByOrglChange New Profit Center
LastChangeDateTime LastChangeDateTime Timestamp
LastChangedByUser LastChangedByUser User Name

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_OrglChangeProjectTP.
-- 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 I_OrglChangeProjectTP AS
SELECT
  OrganizationalChange,
  ProjectInternalID,
  ProjectExternalID,
  ControllingArea,
  ProfitCenter,
  ProfitCenterByOrglChange,
  LastChangeDateTime,
  LastChangedByUser
FROM R_OrglChangeProjectTP
;