I_WellCompletionHierText

DDL: I_WELLCOMPLETIONHIERTEXT SQL: IPVWCHIERNM Type: view BASIC

Well Completion Hierarchy Name

I_WellCompletionHierText is a Basic CDS View that provides data about "Well Completion Hierarchy Name" in SAP S/4HANA. It reads from 1 data source (setheadert) and exposes 3 fields with key fields WellCompletionHier, Language.

Data Sources (1)

SourceAliasJoin Type
setheadert setheadert from

Annotations (11)

NameValueLevelField
EndUserText.label Well Completion Hierarchy Name view
ObjectModel.dataCategory #TEXT view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IPVWCHIERNM view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey WellCompletionHier view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY WellCompletionHier Set Name
KEY Language Primary lang.
WellCompletionHierName Title

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_WellCompletionHierText.
-- 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: IPVWCHIERNM

CREATE VIEW I_WellCompletionHierText AS
SELECT
  cast ( setname as oiu_wc_set ) AS WellCompletionHier,
  cast( langu as spras ) AS Language,
  cast ( descript as oiu_vdm_wc_hier_nm ) AS WellCompletionHierName
FROM setheadert
;