C_SortKeyVHTemp

DDL: C_SORTKEYVHTEMP SQL: CSORTKEYVH Type: view CONSUMPTION

Value Help for Sorting Key

C_SortKeyVHTemp is a Consumption CDS View that provides data about "Value Help for Sorting Key" in SAP S/4HANA. It reads from 1 data source (I_AcctgDocItmDspSqncRule) and exposes 2 fields with key field AcctgDocItmDisplaySequenceRule. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_AcctgDocItmDspSqncRule I_AcctgDocItmDspSqncRule from

Associations (1)

CardinalityTargetAliasCondition
[1..*] C_SortKeyTextVHtemp _Text $projection.AcctgDocItmDisplaySequenceRule = _Text.AcctgDocItmDisplaySequenceRule

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CSORTKEYVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
Search.searchable true view
EndUserText.label Value Help for Sorting Key view
ObjectModel.representativeKey AcctgDocItmDisplaySequenceRule view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
Consumption.ranked true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY AcctgDocItmDisplaySequenceRule AcctgDocItmDisplaySequenceRule Sort key
_Text _Text

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_SortKeyVHTemp.
-- 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: CSORTKEYVH

CREATE VIEW C_SortKeyVHTemp AS
SELECT
  AcctgDocItmDisplaySequenceRule
FROM I_AcctgDocItmDspSqncRule
LEFT OUTER JOIN C_SortKeyTextVHtemp AS _Text ON AcctgDocItmDisplaySequenceRule = _Text.AcctgDocItmDisplaySequenceRule  -- association [1..*]
;