I_MajorAssemblyProjectStatus

DDL: I_MAJORASSEMBLYPROJECTSTATUS SQL: IPROJECTSTATUS Type: view COMPOSITE

To get Project Status Description

I_MajorAssemblyProjectStatus is a Composite CDS View that provides data about "To get Project Status Description" in SAP S/4HANA. It reads from 1 data source (I_Project) and exposes 2 fields with key fields ProjectObject, StatusCode.

Data Sources (1)

SourceAliasJoin Type
I_Project p from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPROJECTSTATUS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.representativeKey ProjectObject view
EndUserText.label To get Project Status Description view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ProjectObject I_Project ProjectObject Object number
KEY StatusCode _All StatusCode Statuscode

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_MajorAssemblyProjectStatus.
-- 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: IPROJECTSTATUS

CREATE VIEW I_MajorAssemblyProjectStatus AS
SELECT
  p.ProjectObject AS ProjectObject,
  _All.StatusCode AS StatusCode
FROM I_Project AS p
;