SHSM_CN_LDST_SH_PD

DDL: SHSM_CN_LDST_SH_PD SQL: SHSMCNLDSTPD Type: view

Operative Proj Definition via External Number

SHSM_CN_LDST_SH_PD is a CDS View that provides data about "Operative Proj Definition via External Number" in SAP S/4HANA. It reads from 3 data sources (cnldst_shorttx, I_Project, proj) and exposes 11 fields.

Data Sources (3)

SourceAliasJoin Type
cnldst_shorttx cnldst_shorttx inner
I_Project I_Project from
proj proj inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName SHSMCNLDSTPD 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 Operative Proj Definition via External Number view

Fields (11)

KeyFieldSource TableSource FieldDescription
PSPNR I_Project ProjectInternalID Project Def.
PSPID I_Project Project WBS Element
language cnldst_shorttx language Report Text Language
shorttext cnldst_shorttx shorttext Text
shorttextu cnldst_shorttx shorttextu ShortTxt
ControllingArea ControllingArea Controlling Area
ProfitCenter ProfitCenter Profit Center
ResponsiblePerson ResponsiblePerson Processor
ApplicantCode ApplicantCode
_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_CN_LDST_SH_PD.
-- 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: SHSMCNLDSTPD

CREATE VIEW SHSM_CN_LDST_SH_PD AS
SELECT
  I_Project.ProjectInternalID AS PSPNR,
  I_Project.Project AS PSPID,
  cnldst_shorttx.language AS language,
  cnldst_shorttx.shorttext AS shorttext,
  cnldst_shorttx.shorttextu AS shorttextu,
  ControllingArea,
  ProfitCenter,
  ResponsiblePerson,
  ApplicantCode
FROM I_Project
INNER JOIN cnldst_shorttx ON /* join condition not captured in parsed metadata */
INNER JOIN proj ON /* join condition not captured in parsed metadata */
;