C_DFS_PositionRankSubTypeVH

DDL: C_DFS_POSITIONRANKSUBTYPEVH SQL: CDFSPOSRNKSTYPE Type: view CONSUMPTION

C-View Position Rank Sub Type

C_DFS_PositionRankSubTypeVH is a Consumption CDS View that provides data about "C-View Position Rank Sub Type" in SAP S/4HANA. It reads from 1 data source (I_DFS_ObjectSubType) and exposes 4 fields with key fields DfsObjectInfoType, DfsObjectSubType, DfsObjectType.

Data Sources (1)

SourceAliasJoin Type
I_DFS_ObjectSubType ObjectSubType from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CDFSPOSRNKSTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label C-View Position Rank Sub Type view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
Search.searchable true view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey DfsObjectSubType view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY DfsObjectInfoType I_DFS_ObjectSubType DfsObjectInfoType Infotype
KEY DfsObjectSubType I_DFS_ObjectSubType DfsObjectSubType Subtype
KEY DfsObjectType I_DFS_ObjectSubType DfsObjectType Object type
DfsObjectSubTypeName

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_DFS_PositionRankSubTypeVH.
-- 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: CDFSPOSRNKSTYPE

CREATE VIEW C_DFS_PositionRankSubTypeVH AS
SELECT
  ObjectSubType.DfsObjectInfoType AS DfsObjectInfoType,
  ObjectSubType.DfsObjectSubType AS DfsObjectSubType,
  ObjectSubType.DfsObjectType AS DfsObjectType,
  ObjectSubType._ObjectSubTypeText[1:LanguageCode=$session.system_language].DfsObjectSubTypeName AS DfsObjectSubTypeName
FROM I_DFS_ObjectSubType AS ObjectSubType
;