I_EntProjProfnlSrvcProjStgeTxt

DDL: I_ENTPROJPROFNLSRVCPROJSTGETXT Type: view BASIC

Profnl Srvc Project Stages - Text

I_EntProjProfnlSrvcProjStgeTxt is a Basic CDS View that provides data about "Profnl Srvc Project Stages - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields Language, ProcessingStatus.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IPROJSTAGETEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ProcessingStatus view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #NOT_ALLOWED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Profnl Srvc Project Stages - Text view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage Lang.
KEY ProcessingStatus
ProcessingStatusText Short 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 I_EntProjProfnlSrvcProjStgeTxt.
-- 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 I_EntProjProfnlSrvcProjStgeTxt AS
SELECT
  ddlanguage AS Language,
  cast ( substring( domvalue_l, 1, 2 ) as /s4ppm/tv_proc_status ) AS ProcessingStatus,
  cast ( ddtext as /s4ppm/tv_proc_status_text ) AS ProcessingStatusText
FROM dd07t
;