C_CSRV_ROOT

DDL: C_CSRV_ROOT Type: view_entity

Custom service root projection

C_CSRV_ROOT is a CDS View that provides data about "Custom service root projection" in SAP S/4HANA. It reads from 1 data source (I_CSRV_ROOT) and exposes 16 fields with key fields ServiceId, Version.

Data Sources (1)

SourceAliasJoin Type
I_CSRV_ROOT I_CSRV_ROOT projection

Annotations (2)

NameValueLevelField
EndUserText.label Custom service root projection view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY ServiceId ServiceId Serv. Provider
KEY Version Version XML Vers.
Description Description Well Code Des.
ExtServiceName ExtServiceName
ServiceType ServiceType
UnpublishedChanges UnpublishedChanges
Transported Transported Truth Value
ServiceDefName ServiceDefName
IsExtensible IsExtensible
ServiceGenVersion ServiceGenVersion
ServiceOperation ServiceOperation
IsPublished IsPublished
ServiceDefType ServiceDefType
BaseServiceName BaseServiceName
AbapLanguageVersion AbapLanguageVersion
DescriptionLanguage DescriptionLanguage Report Text Language

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 C_CSRV_ROOT.
-- 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 C_CSRV_ROOT AS
SELECT
  ServiceId,
  Version,
  Description,
  ExtServiceName,
  ServiceType,
  UnpublishedChanges,
  Transported,
  ServiceDefName,
  IsExtensible,
  ServiceGenVersion,
  ServiceOperation,
  IsPublished,
  ServiceDefType,
  BaseServiceName,
  AbapLanguageVersion,
  DescriptionLanguage
FROM I_CSRV_ROOT
;