C_SetLeafForFmObjP

DDL: C_SETLEAFFORFMOBJP SQL: CSLEAFFMOBJP Type: view CONSUMPTION

Auxiliary For Sets in FM Object Pages

C_SetLeafForFmObjP is a Consumption CDS View that provides data about "Auxiliary For Sets in FM Object Pages" in SAP S/4HANA. It reads from 1 data source (I_Setleaf) and exposes 12 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
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
AbapCatalog.sqlViewName CSLEAFFMOBJP view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Auxiliary For Sets in FM Object Pages view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY SetClass SetClass Set Class
KEY SetSubClass SetSubClass Subclass
KEY SetID SetID Group ID
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
FundsMgmtExtendedSetDesc

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_SetLeafForFmObjP.
-- 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: CSLEAFFMOBJP

CREATE VIEW C_SetLeafForFmObjP 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,
  cast( concat_with_space(SetID, _SetHeader._SetHeaderText[1:Language=$session.system_language].SetDescription, 1 ) as fmis_fundsmgmtextendedsetname ) AS FundsMgmtExtendedSetDesc
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]
;