R_CloudPackage

DDL: R_CLOUDPACKAGE Type: view BASIC Package: ODATA_GL_ACE_DSP_ACCR_OBJ

Cloud Package

R_CloudPackage is a Basic CDS View that provides data about "Cloud Package" in SAP S/4HANA. It reads from 1 data source (tdevc) and exposes 2 fields with key field ABAPPackage. Part of development package ODATA_GL_ACE_DSP_ACCR_OBJ.

Data Sources (1)

SourceAliasJoin Type
tdevc tdevc from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName RCLOUDPACKAGE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Cloud Package view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ABAPPackage devclass Package (Obsolete)
IsCloudSystem

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 R_CloudPackage.
-- 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 R_CloudPackage AS
SELECT
  devclass AS ABAPPackage,
  'X' AS IsCloudSystem
FROM tdevc
;