SHSM_V_PRPMB

DDL: SHSM_V_PRPMB SQL: SHSMVPRPMB Type: view

cds view for search help PRPMB

SHSM_V_PRPMB is a CDS View that provides data about "cds view for search help PRPMB" in SAP S/4HANA. It reads from 2 data sources (I_WBSElement, prps) and exposes 17 fields.

Data Sources (2)

SourceAliasJoin Type
I_WBSElement I_WBSElement from
prps prps inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName SHSMVPRPMB view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label cds view for search help PRPMB view

Fields (17)

KeyFieldSource TableSource FieldDescription
posid WBSElement WBS Internal ID
post1 WBSDescription WBS Element Name
postu prps postu Description
fakkz WBSElementIsBillingElement Billing elem.
ProjectType ProjectType Project Type
ControllingArea ControllingArea Controlling Area
ResponsibleCostCenter ResponsibleCostCenter Responsible Cost Center
RespCostCenterControllingArea RespCostCenterControllingArea CA (resp.)
ProfitCenter ProfitCenter Profit Center
ApplicantCode ApplicantCode
FreeDefinedIndicator2 FreeDefinedIndicator2
ProjectInternalID ProjectInternalID Project Def.
ResponsiblePerson ResponsiblePerson Processor
ResponsiblePersonName ResponsiblePersonName User
_Project _Project
_ProjectApplicant _ProjectApplicant
_ResponsiblePerson _ResponsiblePerson

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 SHSM_V_PRPMB.
-- 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: SHSMVPRPMB

CREATE VIEW SHSM_V_PRPMB AS
SELECT
  WBSElement AS posid,
  WBSDescription AS post1,
  prps.postu AS postu,
  WBSElementIsBillingElement AS fakkz,
  ProjectType,
  ControllingArea,
  ResponsibleCostCenter,
  RespCostCenterControllingArea,
  ProfitCenter,
  ApplicantCode,
  FreeDefinedIndicator2,
  ProjectInternalID,
  ResponsiblePerson,
  ResponsiblePersonName
FROM I_WBSElement
INNER JOIN prps ON /* join condition not captured in parsed metadata */
;