R_FixedAssetPostingLedgerTP

DDL: R_FIXEDASSETPOSTINGLEDGERTP Type: view_entity TRANSACTIONAL

Fixed Asset Posting Ledger

R_FixedAssetPostingLedgerTP is a Transactional CDS View that provides data about "Fixed Asset Posting Ledger" in SAP S/4HANA. It reads from 1 data source (I_FixedAssetPostingLedger) and exposes 5 fields with key fields FixedAssetPostingUUID, ReferenceDocumentItem, Ledger. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_FixedAssetPostingLedger FixedAssetPostingLedger from

Associations (1)

CardinalityTargetAliasCondition
[0..*] R_FixedAssetPostingValuationTP _FixedAssetPostingValuation $projection.FixedAssetPostingUUID = _FixedAssetPostingValuation.FixedAssetPostingUUID and $projection.ReferenceDocumentItem = _FixedAssetPostingValuation.ReferenceDocumentItem and $projection.Ledger = _FixedAssetPostingValuation.Ledger

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Fixed Asset Posting Ledger view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY FixedAssetPostingUUID FixedAssetPostingUUID Posting UUID
KEY ReferenceDocumentItem ReferenceDocumentItem Reference item
KEY Ledger Ledger Ledger
_FixedAssetPosting _FixedAssetPosting
_FixedAssetPostingValuation _FixedAssetPostingValuation

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 R_FixedAssetPostingLedgerTP.
-- 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.

CREATE VIEW R_FixedAssetPostingLedgerTP AS
SELECT
  FixedAssetPostingUUID,
  ReferenceDocumentItem,
  Ledger
FROM I_FixedAssetPostingLedger AS FixedAssetPostingLedger
LEFT OUTER JOIN R_FixedAssetPostingValuationTP AS _FixedAssetPostingValuation ON FixedAssetPostingUUID = _FixedAssetPostingValuation.FixedAssetPostingUUID AND ReferenceDocumentItem = _FixedAssetPostingValuation.ReferenceDocumentItem AND Ledger = _FixedAssetPostingValuation.Ledger  -- association [0..*]
;