R_FixedAssetLedgerTP
Fixed Asset Ledger
R_FixedAssetLedgerTP is a Transactional CDS View that provides data about "Fixed Asset Ledger" in SAP S/4HANA. It reads from 1 data source (I_FixedAssetForLedger) and exposes 15 fields with key fields CompanyCode, MasterFixedAsset, FixedAsset, Ledger. Part of development package FINS_FAA_MD_RAP_BO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_FixedAssetForLedger | I_FixedAssetForLedger | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Fixed Asset Ledger | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (15)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | CompanyCode | ||
| KEY | MasterFixedAsset | MasterFixedAsset | ||
| KEY | FixedAsset | FixedAsset | ||
| KEY | Ledger | Ledger | ||
| AssetCapitalizationDate | AssetCapitalizationDate | |||
| AssetDeactivationDate | AssetDeactivationDate | |||
| AcquisitionValueDate | AcquisitionValueDate | |||
| FirstAcquisitionFiscalYear | FirstAcquisitionFiscalYear | |||
| FirstAcquisitionFiscalPeriod | FirstAcquisitionFiscalPeriod | |||
| LastRevaluationDate | LastRevaluationDate | |||
| _FixedAsset | _FixedAsset | |||
| _Ledger | _Ledger | |||
| _CompanyCode | _CompanyCode | |||
| _MasterFixedAsset | _MasterFixedAsset | |||
| _AssetValuationForLedger | _AssetValuationForLedger |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Fixed Asset Ledger'
@VDM.viewType: #TRANSACTIONAL
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
semanticKey: ['CompanyCode','MasterFixedAsset','FixedAsset','Ledger'],
usageType: {
serviceQuality: #B,
sizeCategory: #XXL,
dataClass: #MASTER
}
}
@Consumption.dbHints: [ '&PREFER_JOIN_WITH_FDA 0&' ]
define view entity R_FixedAssetLedgerTP
as select from I_FixedAssetForLedger
association to parent R_FixedAssetTP as _FixedAsset on $projection.CompanyCode = _FixedAsset.CompanyCode
and $projection.MasterFixedAsset = _FixedAsset.MasterFixedAsset
and $projection.FixedAsset = _FixedAsset.FixedAsset
{
// Keys
key CompanyCode,
key MasterFixedAsset,
key FixedAsset,
key Ledger,
AssetCapitalizationDate,
AssetDeactivationDate,
AcquisitionValueDate,
FirstAcquisitionFiscalYear,
FirstAcquisitionFiscalPeriod,
LastRevaluationDate,
/* Associations */
_FixedAsset,
_Ledger,
_CompanyCode,
_MasterFixedAsset,
_AssetValuationForLedger
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA