P_EntProjElmntDlvTypeTextCode

DDL: P_ENTPROJELMNTDLVTYPETEXTCODE Type: view_entity BASIC Package: ODATA_PPM_COMMON_API

Description for Deliverable Type

P_EntProjElmntDlvTypeTextCode is a Basic CDS View that provides data about "Description for Deliverable Type" in SAP S/4HANA. It reads from 2 data sources (csla, cslt) and exposes 6 fields with key fields Lstar, Language. Part of development package ODATA_PPM_COMMON_API.

Data Sources (2)

SourceAliasJoin Type
csla _md inner
cslt cslt from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view
VDM.private true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Lstar cslt lstar Activity Type
KEY Language cslt spras Off. Language
ValidityEndDate cslt datbi Validity period
Kokrs cslt kokrs Org. Value
ValidityStartDate csla datab Validity period
Ktext cslt ktext Text

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 P_EntProjElmntDlvTypeTextCode.
-- 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.

CREATE VIEW P_EntProjElmntDlvTypeTextCode AS
SELECT
  cslt.lstar AS Lstar,
  cslt.spras AS Language,
  cslt.datbi AS ValidityEndDate,
  cslt.kokrs AS Kokrs,
  _md.datab AS ValidityStartDate,
  cslt.ktext AS Ktext
FROM cslt
INNER JOIN csla AS _md ON /* join condition not captured in parsed metadata */
;