I_MstrProjStrctrElmntWBC
Master Project Structure Element for WBC
I_MstrProjStrctrElmntWBC is a Composite CDS View that provides data about "Master Project Structure Element for WBC" in SAP S/4HANA. It reads from 7 data sources and exposes 41 fields.
Data Sources (7)
| Source | Alias | Join Type |
|---|---|---|
| iaom_cpro_exat | CProject | inner |
| I_MasterProjectItemList | MasterProject | from |
| I_MasterProjectItemList | MasterProject | union |
| P_WBSObject | ProjCostObj | inner |
| P_WBSObject | ProjCostObj | inner |
| I_Project | ProjectDefinition | inner |
| I_Project | ProjectDefinition | inner |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | IMPSTRELMNWBS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Master Project Structure Element for WBC | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| AccessControl.personalData.blocking | #REQUIRED | view |
Fields (41)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| MasterProjectUUID | I_MasterProjectItemList | MasterProjectUUID | NodeID | |
| MasterProject | I_MasterProjectItemList | MasterProject | Project ID | |
| MasterProjectName | I_MasterProjectItemList | MasterProjectName | ||
| MasterProjectIsConfidential | I_MasterProjectItemList | MasterProjectIsConfidential | ||
| MasterProjectType | I_MasterProjectItemList | MasterProjectType | ||
| MasterProjectStage | I_MasterProjectItemList | MasterProjectStage | ||
| MasterProjectOrganization | I_MasterProjectItemList | MasterProjectOrganization | ||
| UserIsInvolved | I_MasterProjectItemList | UserIsInvolved | ||
| Project | I_Project | Project | WBS Element | |
| ProjectDescription | I_Project | ProjectDescription | Project Name | |
| BusinessArea | I_Project | BusinessArea | Business Area | |
| CompanyCode | I_Project | CompanyCode | Receiver Company Code | |
| ControllingArea | I_Project | ControllingArea | Controlling Area | |
| ProfitCenter | I_Project | ProfitCenter | Profit Center | |
| ResponsiblePerson | I_Project | ResponsiblePerson | Processor | |
| WBSElementIsBillingElement | P_WBSObject | WBSElementIsBillingElement | Billing elem. | |
| WBSElementShortID | P_WBSObject | WBSElementShortID | ||
| ControllingObjectDescription | P_WBSObject | WBSDescription | WBS Element Name | |
| ControllingObject | P_WBSObject | WBSElementObject | Object number | |
| ControllingObjectExternalID | P_WBSObject | Object | TRFM Object | |
| MasterProjectUUID | NodeID | |||
| MasterProject | I_MasterProjectItemList | MasterProject | Project ID | |
| MasterProjectName | I_MasterProjectItemList | MasterProjectName | ||
| MasterProjectIsConfidential | I_MasterProjectItemList | MasterProjectIsConfidential | ||
| MasterProjectType | I_MasterProjectItemList | MasterProjectType | ||
| MasterProjectStage | I_MasterProjectItemList | MasterProjectStage | ||
| MasterProjectOrganization | I_MasterProjectItemList | MasterProjectOrganization | ||
| UserIsInvolved | I_MasterProjectItemList | UserIsInvolved | ||
| Project | I_Project | Project | WBS Element | |
| ProjectDescription | I_Project | ProjectDescription | Project Name | |
| BusinessArea | I_Project | BusinessArea | Business Area | |
| CompanyCode | I_Project | CompanyCode | Receiver Company Code | |
| ControllingArea | I_Project | ControllingArea | Controlling Area | |
| ProfitCenter | I_Project | ProfitCenter | Profit Center | |
| ResponsiblePerson | I_Project | ResponsiblePerson | Processor | |
| WBSElementIsBillingElement | P_WBSObject | WBSElementIsBillingElement | Billing elem. | |
| WBSElementShortID | P_WBSObject | WBSElementShortID | ||
| ControllingObjectDescription | P_WBSObject | WBSDescription | WBS Element Name | |
| ControllingObject | P_WBSObject | WBSElementObject | Object number | |
| ControllingObjectExternalID | P_WBSObject | Object | TRFM Object | |
| ObjectInternalID | P_WBSObject | ObjectInternalID | Object number |
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_MstrProjStrctrElmntWBC.
-- 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: IMPSTRELMNWBS
CREATE VIEW I_MstrProjStrctrElmntWBC AS
SELECT
MasterProject.MasterProjectUUID AS MasterProjectUUID,
MasterProject.MasterProject AS MasterProject,
MasterProject.MasterProjectName AS MasterProjectName,
MasterProject.MasterProjectIsConfidential AS MasterProjectIsConfidential,
MasterProject.MasterProjectType AS MasterProjectType,
MasterProject.MasterProjectStage AS MasterProjectStage,
MasterProject.MasterProjectOrganization AS MasterProjectOrganization,
MasterProject.UserIsInvolved AS UserIsInvolved,
ProjectDefinition.Project AS Project,
ProjectDefinition.ProjectDescription AS ProjectDescription,
ProjectDefinition.BusinessArea AS BusinessArea,
ProjectDefinition.CompanyCode AS CompanyCode,
ProjectDefinition.ControllingArea AS ControllingArea,
ProjectDefinition.ProfitCenter AS ProfitCenter,
ProjectDefinition.ResponsiblePerson AS ResponsiblePerson,
ProjCostObj.WBSElementIsBillingElement AS WBSElementIsBillingElement,
ProjCostObj.WBSElementShortID AS WBSElementShortID,
ProjCostObj.WBSDescription AS ControllingObjectDescription,
ProjCostObj.WBSElementObject AS ControllingObject,
ProjCostObj.Object AS ControllingObjectExternalID,
ProjCostObj.ObjectInternalID AS ObjectInternalID
FROM I_MasterProjectItemList AS MasterProject
INNER JOIN I_Project AS ProjectDefinition ON /* join condition not captured in parsed metadata */
INNER JOIN P_WBSObject AS ProjCostObj ON /* join condition not captured in parsed metadata */
INNER JOIN iaom_cpro_exat AS CProject ON /* join condition not captured in parsed metadata */
-- UNION with additional select branch(es): I_MasterProjectItemList
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA