C_DFS_PositionJobSubTypeVH

DDL: C_DFS_POSITIONJOBSUBTYPEVH SQL: CDFSPOSJOBSTYPE Type: view CONSUMPTION

C-View Position Job Sub Type

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

Data Sources (1)

SourceAliasJoin Type
I_DFS_ObjectSubType ObjectSubType from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CDFSPOSJOBSTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label C-View Position Job 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.dataCategory #VALUE_HELP view
ObjectModel.representativeKey DfsObjectInfoType view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY DfsObjectInfoType I_DFS_ObjectSubType DfsObjectInfoType Infotype
KEY DfsObjectSubType I_DFS_ObjectSubType DfsObjectSubType Subtype

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_PositionJobSubTypeVH.
-- 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: CDFSPOSJOBSTYPE

CREATE VIEW C_DFS_PositionJobSubTypeVH AS
SELECT
  ObjectSubType.DfsObjectInfoType AS DfsObjectInfoType,
  ObjectSubType.DfsObjectSubType AS DfsObjectSubType
FROM I_DFS_ObjectSubType AS ObjectSubType
;