I_WBSElementShortText

DDL: I_WBSELEMENTSHORTTEXT SQL: IWBSSHORTTEXT Type: view BASIC

WBS Element Language based description

I_WBSElementShortText is a Basic CDS View that provides data about "WBS Element Language based description" in SAP S/4HANA. It reads from 1 data source (cnldst_shorttx) and exposes 3 fields with key fields WBSElementObject, Language.

Data Sources (1)

SourceAliasJoin Type
cnldst_shorttx cnldst_shorttx from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IWBSSHORTTEXT view
AbapCatalog.preserveKey true view
EndUserText.label WBS Element Language based description view
AbapCatalog.compiler.compareFilter true view
ObjectModel.representativeKey WBSElementObject view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY WBSElementObject objnr WBS Element Object
KEY Language language Language
WBSElementLangBsdDescription shorttext WBS Element Description

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 I_WBSElementShortText.
-- 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: IWBSSHORTTEXT

CREATE VIEW I_WBSElementShortText AS
SELECT
  objnr AS WBSElementObject,
  Language,
  shorttext AS WBSElementLangBsdDescription
FROM cnldst_shorttx
;