C_Setleafforfaobjp

DDL: C_SETLEAFFORFAOBJP SQL: CSTLFFAOBJP Type: view CONSUMPTION

Setleaf For Functional Area Object Pages

C_Setleafforfaobjp is a Consumption CDS View that provides data about "Setleaf For Functional Area Object Pages" in SAP S/4HANA. It reads from 1 data source (I_Setleaf) and exposes 11 fields with key fields SetClass, SetSubClass, SetID, SetLineNumber. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_Setleaf I_Setleaf from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_SetHeader _SetHeader $projection.SetClass = _SetHeader.SetClass and $projection.SetSubClass = _SetHeader.SetSubClass and $projection.SetID = _SetHeader.SetID

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName CSTLFFAOBJP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Setleaf For Functional Area Object Pages view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.sizeCategory #XL view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY SetClass SetClass Set Class
KEY SetSubClass SetSubClass Subclass
KEY SetID SetID Functional Area Group
KEY SetLineNumber SetLineNumber Set Line
SetRangeSign SetRangeSign SIGN
SetRangeOption SetRangeOption Option
SetRangeFromValue SetRangeFromValue Valid-From Date
SetRangeToValue SetRangeToValue Valid To
CreatedByUser _SetHeader CreatedByUser Created By
CreationDate _SetHeader CreationDate Creation Date
SetDescription Group Description

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_Setleafforfaobjp.
-- 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: CSTLFFAOBJP

CREATE VIEW C_Setleafforfaobjp AS
SELECT
  SetClass,
  SetSubClass,
  SetID,
  SetLineNumber,
  SetRangeSign,
  SetRangeOption,
  SetRangeFromValue,
  SetRangeToValue,
  _SetHeader.CreatedByUser AS CreatedByUser,
  _SetHeader.CreationDate AS CreationDate,
  _SetHeader._SetHeaderText[1:Language=$session.system_language].SetDescription AS SetDescription
FROM I_Setleaf
LEFT OUTER JOIN I_SetHeader AS _SetHeader ON SetClass = _SetHeader.SetClass AND SetSubClass = _SetHeader.SetSubClass AND SetID = _SetHeader.SetID  -- association [0..1]
;