I_OIL_SAPTable

DDL: I_OIL_SAPTABLE Type: view_entity BASIC

SAP Table

I_OIL_SAPTable is a Basic CDS View that provides data about "SAP Table" in SAP S/4HANA. It reads from 1 data source (dd02l) and exposes 3 fields with key fields DatabaseTable, ABAPObjectActivationState, ABAPEntryVersion.

Data Sources (1)

SourceAliasJoin Type
dd02l dd02l from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label SAP Table view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY DatabaseTable tabname Table/Constant Value
KEY ABAPObjectActivationState as4local Activation State
KEY ABAPEntryVersion as4vers Version

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_OIL_SAPTable.
-- 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_OIL_SAPTable AS
SELECT
  tabname AS DatabaseTable,
  as4local AS ABAPObjectActivationState,
  as4vers AS ABAPEntryVersion
FROM dd02l
;