SHSM_V_PRSSW

DDL: SHSM_V_PRSSW SQL: SHSMVPRSSW Type: view Package: CN_PSP_STD

cds view for search help PRSSW

SHSM_V_PRSSW is a CDS View that provides data about "cds view for search help PRSSW" in SAP S/4HANA. It reads from 2 data sources (I_Standardproject, projs) and exposes 13 fields. Part of development package CN_PSP_STD.

Data Sources (2)

SourceAliasJoin Type
I_Standardproject I_Standardproject from
projs projs inner

Annotations (11)

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

Fields (13)

KeyFieldSource TableSource FieldDescription
pspid I_Standardproject Project WBS Element
post1 I_Standardproject ProjectDescription Project Name
vernr I_Standardproject ResponsiblePerson Processor
verna I_Standardproject ResponsiblePersonName User
pspid_edit I_Standardproject ProjectWithCodingMask Std. Proj. Def.
postu projs postu Description
pspnr I_Standardproject ProjectInternalID Project Def.
ControllingArea I_Standardproject ControllingArea Controlling Area
ProfitCenter I_Standardproject ProfitCenter Profit Center
ApplicantCode I_Standardproject ApplicantCode
_ProjectApplicant I_Standardproject _ProjectApplicant
ResponsiblePerson I_Standardproject ResponsiblePerson Processor
_ResponsiblePerson I_Standardproject _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_PRSSW.
-- 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: SHSMVPRSSW

CREATE VIEW SHSM_V_PRSSW AS
SELECT
  I_Standardproject.Project AS pspid,
  I_Standardproject.ProjectDescription AS post1,
  I_Standardproject.ResponsiblePerson AS vernr,
  I_Standardproject.ResponsiblePersonName AS verna,
  I_Standardproject.ProjectWithCodingMask AS pspid_edit,
  projs.postu AS postu,
  I_Standardproject.ProjectInternalID AS pspnr,
  I_Standardproject.ControllingArea AS ControllingArea,
  I_Standardproject.ProfitCenter AS ProfitCenter,
  I_Standardproject.ApplicantCode AS ApplicantCode,
  I_Standardproject._ProjectApplicant AS _ProjectApplicant,
  I_Standardproject.ResponsiblePerson AS ResponsiblePerson,
  I_Standardproject._ResponsiblePerson AS _ResponsiblePerson
FROM I_Standardproject
INNER JOIN projs ON /* join condition not captured in parsed metadata */
;