I_DfsCapabilityOwner

DDL: I_DFSCAPABILITYOWNER SQL: IDFSCAPBLTOWNER Type: view BASIC

Value Help for Owner

I_DfsCapabilityOwner is a Basic CDS View that provides data about "Value Help for Owner" in SAP S/4HANA. It reads from 1 data source (pa0001) and exposes 5 fields with key fields EmployeePersonnelNumber, EndDate, StartDate. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
pa0001 pa0001 from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_DFS_SenstvyClfnFrcElmnt _SenstvyClfn $projection.EmployeePersonnelNumber = _SenstvyClfn.ForceElementOrgID

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IDFSCAPBLTOWNER view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Value Help for Owner view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY EmployeePersonnelNumber pa0001 pernr Personnel no.
KEY EndDate pa0001 endda Valid To
KEY StartDate pa0001 begda Valid From
EmployeeName pa0001 ename User Name
_SenstvyClfn _SenstvyClfn

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_DfsCapabilityOwner.
-- 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: IDFSCAPBLTOWNER

CREATE VIEW I_DfsCapabilityOwner AS
SELECT
  pa0001.pernr AS EmployeePersonnelNumber,
  pa0001.endda AS EndDate,
  pa0001.begda AS StartDate,
  pa0001.ename AS EmployeeName
FROM pa0001
LEFT OUTER JOIN I_DFS_SenstvyClfnFrcElmnt AS _SenstvyClfn ON EmployeePersonnelNumber = _SenstvyClfn.ForceElementOrgID  -- association [1..*]
;