P_JP_FIXEDASSETVALUE

DDL: P_JP_FIXEDASSETVALUE SQL: PJPASSETVALUE Type: view CONSUMPTION

Summarization of Company code Currency

P_JP_FIXEDASSETVALUE is a Consumption CDS View that provides data about "Summarization of Company code Currency" in SAP S/4HANA. It reads from 2 data sources (I_DepreciationAreaForLedger, I_AssetBalanceCube) and exposes 16 fields with key fields CompanyCode, AssetDepreciationArea, MasterFixedAsset, FixedAsset, FiscalYear.

Data Sources (2)

SourceAliasJoin Type
I_DepreciationAreaForLedger _DepreciationArea inner
I_AssetBalanceCube I_AssetBalanceCube from

Parameters (4)

NameTypeDefault
P_AssetAccountingKeyFigureSet faa_key_figure_set
P_FiscalYear fis_gjahr
P_FiscalPeriod fis_poper
P_KeyDate fagl_keydate

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName PJPASSETVALUE view
EndUserText.label Summarization of Company code Currency view
VDM.viewType #CONSUMPTION view
VDM.private true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode Values CompanyCode Receiver Company Code
KEY AssetDepreciationArea Values AssetDepreciationArea Deprec. Area
KEY MasterFixedAsset Values MasterFixedAsset Fixed Asset
KEY FixedAsset Values FixedAsset Sub-number
KEY FiscalYear Values FiscalYear G/L Fiscal Year
KEY AssetAccountingKeyFigureSet
KEY AssetAccountingKeyFigure Values AssetAccountingKeyFigure
KEY TransactionSubitem Values TransactionSubitem Sub Transaction
KEY ReferenceDocument Values ReferenceDocument Reference Document
KEY ReferenceDocumentItem Values ReferenceDocumentItem Reference item
KEY AssetValueDate Values AssetValueDate Reference date
KEY AssetTransactionType Values AssetTransactionType Trans.Type
KEY AssetAccountingSortedKeyFigure Values AssetAccountingSortedKeyFigure
DisplayCurrency Values DisplayCurrency Display Currency
AmountInDisplayCurrency Values AmountInDisplayCurrency
SelectedCurrencyBranch Values SelectedCurrencyBranch

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_JP_FIXEDASSETVALUE.
-- 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: PJPASSETVALUE
-- Parameters: P_AssetAccountingKeyFigureSet : faa_key_figure_set, P_FiscalYear : fis_gjahr, P_FiscalPeriod : fis_poper, P_KeyDate : fagl_keydate

CREATE VIEW P_JP_FIXEDASSETVALUE AS
SELECT
  Values.CompanyCode AS CompanyCode,
  Values.AssetDepreciationArea AS AssetDepreciationArea,
  Values.MasterFixedAsset AS MasterFixedAsset,
  Values.FixedAsset AS FixedAsset,
  Values.FiscalYear AS FiscalYear,
  :P_AssetAccountingKeyFigureSet AS AssetAccountingKeyFigureSet,
  Values.AssetAccountingKeyFigure AS AssetAccountingKeyFigure,
  Values.TransactionSubitem AS TransactionSubitem,
  Values.ReferenceDocument AS ReferenceDocument,
  Values.ReferenceDocumentItem AS ReferenceDocumentItem,
  Values.AssetValueDate AS AssetValueDate,
  Values.AssetTransactionType AS AssetTransactionType,
  Values.AssetAccountingSortedKeyFigure AS AssetAccountingSortedKeyFigure,
  Values.DisplayCurrency AS DisplayCurrency,
  Values.AmountInDisplayCurrency AS AmountInDisplayCurrency,
  Values.SelectedCurrencyBranch AS SelectedCurrencyBranch
FROM I_AssetBalanceCube
INNER JOIN I_DepreciationAreaForLedger AS _DepreciationArea ON /* join condition not captured in parsed metadata */
;