I_PrjAppendedOrdForCostReport

DDL: I_PRJAPPENDEDORDFORCOSTREPORT Type: view_entity COMPOSITE

Project Appended Order for Cost Report

I_PrjAppendedOrdForCostReport is a Composite CDS View that provides data about "Project Appended Order for Cost Report" in SAP S/4HANA. It reads from 1 data source (P_PrjAppendedOrdForCostReport) and exposes 4 fields with key fields OrderCategory, ControllingArea, OrderType, OrderTypeAppendedCode.

Data Sources (1)

SourceAliasJoin Type
P_PrjAppendedOrdForCostReport P_PrjAppendedOrdForCostReport from

Annotations (6)

NameValueLevelField
EndUserText.label Project Appended Order for Cost Report view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #COMPOSITE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY OrderCategory ordercategory Order Category
KEY ControllingArea controllingarea Controlling Area
KEY OrderType ordertype Order Type
KEY OrderTypeAppendedCode OrderTypeAppendedCode

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_PrjAppendedOrdForCostReport.
-- 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_PrjAppendedOrdForCostReport AS
SELECT
  OrderCategory,
  ControllingArea,
  OrderType,
  OrderTypeAppendedCode
FROM P_PrjAppendedOrdForCostReport
;