I_MstrProjSingleFinPlan

DDL: I_MSTRPROJSINGLEFINPLAN SQL: IMPSNGLEFP Type: view BASIC

Commercial Proj of Single Fin Plan Type

I_MstrProjSingleFinPlan is a Basic CDS View that provides data about "Commercial Proj of Single Fin Plan Type" in SAP S/4HANA. It reads from 1 data source (P_Mpsingleplan) and exposes 5 fields.

Data Sources (1)

SourceAliasJoin Type
P_Mpsingleplan MpSngle from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IMPSNGLEFP view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Commercial Proj of Single Fin Plan Type view

Fields (5)

KeyFieldSource TableSource FieldDescription
MasterProjectUUID P_Mpsingleplan db_key UUID
MasterProjectOrganization P_Mpsingleplan org_id Service Org.
MasterProjectIsConfidential P_Mpsingleplan confidential Confidential
MasterProjectType P_Mpsingleplan mp_type Mass Processing Type
MasterProject P_Mpsingleplan mp_id Cust Project ID

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_MstrProjSingleFinPlan.
-- 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: IMPSNGLEFP

CREATE VIEW I_MstrProjSingleFinPlan AS
SELECT
  MpSngle.db_key AS MasterProjectUUID,
  MpSngle.org_id AS MasterProjectOrganization,
  MpSngle.confidential AS MasterProjectIsConfidential,
  MpSngle.mp_type AS MasterProjectType,
  MpSngle.mp_id AS MasterProject
FROM P_Mpsingleplan AS MpSngle
;