SHSM_V_PRPMA

DDL: SHSM_V_PRPMA SQL: SHSMVPRPMA Type: view Package: PS_S4CLOUD_DEPRECATED_OBJECTS

cds view for search help PRPMA

SHSM_V_PRPMA is a CDS View that provides data about "cds view for search help PRPMA" in SAP S/4HANA. It reads from 2 data sources (I_WBSElement, prps) and exposes 17 fields. Part of development package PS_S4CLOUD_DEPRECATED_OBJECTS.

Data Sources (2)

SourceAliasJoin Type
I_WBSElement I_WBSElement from
prps prps inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName SHSMVPRPMA 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 PRPMA view

Fields (17)

KeyFieldSource TableSource FieldDescription
posid WBSElement WBS Internal ID
post1 WBSDescription WBS Element Name
postu prps postu Description
belkz WBSIsAccountAssignmentElement
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_PRPMA.
-- 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: SHSMVPRPMA

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