A_CertaintyLevel

DDL: A_CERTAINTYLEVEL SQL: ACERTAINTYLVL Type: view BASIC

API for Certainty Level

A_CertaintyLevel is a Basic CDS View that provides data about "API for Certainty Level" in SAP S/4HANA. It reads from 1 data source (I_CertaintyLevel_2) and exposes 2 fields with key field CertaintyLevel.

Data Sources (1)

SourceAliasJoin Type
I_CertaintyLevel_2 I_CertaintyLevel_2 from

Annotations (12)

NameValueLevelField
EndUserText.label API for Certainty Level view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName ACERTAINTYLVL view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.compiler.compareFilter true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.preserveKey true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CertaintyLevel CertaintyLevel
CertaintyLevelName

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 A_CertaintyLevel.
-- 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: ACERTAINTYLVL

CREATE VIEW A_CertaintyLevel AS
SELECT
  CertaintyLevel,
  _Text[1:Language = $session.system_language].CertaintyLevelName AS CertaintyLevelName
FROM I_CertaintyLevel_2
;