P_SlalitypeDerivation

DDL: P_SLALITYPEDERIVATION Type: view_entity COMPOSITE Package: FINS_FIS_AA_MD

Derivation Function for SLALITypes

P_SlalitypeDerivation is a Composite CDS View that provides data about "Derivation Function for SLALITypes" in SAP S/4HANA. It reads from 2 data sources (I_AssetKeyFigureSetSpec, I_AssetKeyFigureSpecification) and exposes 3 fields with key fields AssetAccountingKeyFigure, SubLedgerAcctLineItemType, AssetAcctTransClassfctn. Part of development package FINS_FIS_AA_MD.

Data Sources (2)

SourceAliasJoin Type
I_AssetKeyFigureSetSpec AssetKeyFigureSetSpec from
I_AssetKeyFigureSpecification AssetKeyFigureSpec inner

Parameters (1)

NameTypeDefault
P_AssetAccountingKeyFigureSet faa_key_figure_set

Annotations (5)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Derivation Function for SLALITypes view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY AssetAccountingKeyFigure I_AssetKeyFigureSpecification AssetAccountingKeyFigure Key Figure
KEY SubLedgerAcctLineItemType I_AssetKeyFigureSpecification SubLedgerAcctLineItemType SLALineItemType
KEY AssetAcctTransClassfctn I_AssetKeyFigureSpecification AssetAcctAnlytlTransClassfctn Trans.Type Cat.

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 P_SlalitypeDerivation.
-- 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.
-- Parameters: P_AssetAccountingKeyFigureSet : faa_key_figure_set

CREATE VIEW P_SlalitypeDerivation AS
SELECT
  AssetKeyFigureSpec.AssetAccountingKeyFigure AS AssetAccountingKeyFigure,
  AssetKeyFigureSpec.SubLedgerAcctLineItemType AS SubLedgerAcctLineItemType,
  AssetKeyFigureSpec.AssetAcctAnlytlTransClassfctn AS AssetAcctTransClassfctn
FROM I_AssetKeyFigureSetSpec AS AssetKeyFigureSetSpec
INNER JOIN I_AssetKeyFigureSpecification AS AssetKeyFigureSpec ON /* join condition not captured in parsed metadata */
;