SHSM_CN_LDST_SH_PR

DDL: SHSM_CN_LDST_SH_PR SQL: SHSMCNLDSTPR Type: view

Search for Operative WBS Elements via External Number

SHSM_CN_LDST_SH_PR is a CDS View that provides data about "Search for Operative WBS Elements via External Number" in SAP S/4HANA. It reads from 4 data sources (cnldst_shorttx, I_Project, I_WBSElement, proj) and exposes 17 fields.

Data Sources (4)

SourceAliasJoin Type
cnldst_shorttx cnldst_shorttx inner
I_Project I_Project inner
I_WBSElement I_WBSElement from
proj proj inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName SHSMCNLDSTPR 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 Search for Operative WBS Elements via External Number view

Fields (17)

KeyFieldSource TableSource FieldDescription
pspid I_Project Project WBS Element
posid I_WBSElement WBSElement WBS Internal ID
LANGUAGE cnldst_shorttx language Report Text Language
SHORTTEXT cnldst_shorttx shorttext Text
SHORTTEXTU cnldst_shorttx shorttextu ShortTxt
ControllingArea I_WBSElement ControllingArea Controlling Area
ProjectType ProjectType Project Type
ResponsibleCostCenter ResponsibleCostCenter Responsible Cost Center
RespCostCenterControllingArea RespCostCenterControllingArea CA (resp.)
ProfitCenter I_WBSElement ProfitCenter Profit Center
ResponsiblePerson I_WBSElement ResponsiblePerson Processor
ResponsiblePersonName I_WBSElement ResponsiblePersonName User
ProjectInternalID I_WBSElement ProjectInternalID Project Def.
ApplicantCode I_WBSElement ApplicantCode
_ProjectApplicant I_WBSElement _ProjectApplicant
_Project _Project
_ResponsiblePerson I_WBSElement _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_CN_LDST_SH_PR.
-- 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: SHSMCNLDSTPR

CREATE VIEW SHSM_CN_LDST_SH_PR AS
SELECT
  I_Project.Project AS pspid,
  I_WBSElement.WBSElement AS posid,
  cnldst_shorttx.language AS LANGUAGE,
  cnldst_shorttx.shorttext AS SHORTTEXT,
  cnldst_shorttx.shorttextu AS SHORTTEXTU,
  I_WBSElement.ControllingArea AS ControllingArea,
  ProjectType,
  ResponsibleCostCenter,
  RespCostCenterControllingArea,
  I_WBSElement.ProfitCenter AS ProfitCenter,
  I_WBSElement.ResponsiblePerson AS ResponsiblePerson,
  I_WBSElement.ResponsiblePersonName AS ResponsiblePersonName,
  I_WBSElement.ProjectInternalID AS ProjectInternalID,
  I_WBSElement.ApplicantCode AS ApplicantCode,
  I_WBSElement._ProjectApplicant AS _ProjectApplicant,
  I_WBSElement._ResponsiblePerson AS _ResponsiblePerson
FROM I_WBSElement
INNER JOIN cnldst_shorttx ON /* join condition not captured in parsed metadata */
INNER JOIN I_Project ON /* join condition not captured in parsed metadata */
INNER JOIN proj ON /* join condition not captured in parsed metadata */
;