C_Divisiontextvhtemp

DDL: C_DIVISIONTEXTVHTEMP SQL: CDIVISIONVHTEXT Type: view CONSUMPTION

Division VH text

C_Divisiontextvhtemp is a Consumption CDS View that provides data about "Division VH text" in SAP S/4HANA. It reads from 1 data source (I_DivisionText) and exposes 3 fields with key fields Division, Language.

Data Sources (1)

SourceAliasJoin Type
I_DivisionText Division from

Annotations (10)

NameValueLevelField
EndUserText.label Division VH text view
VDM.viewType #CONSUMPTION view
AbapCatalog.sqlViewName CDIVISIONVHTEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
Search.searchable true view
ObjectModel.representativeKey Division view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Division I_DivisionText Division Internal Division ID
KEY Language I_DivisionText Language Report Text Language
DivisionName I_DivisionText DivisionName Division Description

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_Divisiontextvhtemp.
-- 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: CDIVISIONVHTEXT

CREATE VIEW C_Divisiontextvhtemp AS
SELECT
  Division.Division AS Division,
  Division.Language AS Language,
  Division.DivisionName AS DivisionName
FROM I_DivisionText AS Division
;