P_FixedAssetVH
P_FixedAssetStdVH
P_FixedAssetVH is a Composite CDS View that provides data about "P_FixedAssetStdVH" in SAP S/4HANA. It reads from 1 data source (I_FixedAsset) and exposes 7 fields with key fields CompanyCode, MasterFixedAsset, FixedAsset. Part of development package FINS_FIS_AA_MD.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_FixedAsset | I_FixedAsset | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PFIFXDASTVH | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | I_FixedAsset | CompanyCode | |
| KEY | MasterFixedAsset | I_FixedAsset | MasterFixedAsset | |
| KEY | FixedAsset | I_FixedAsset | FixedAsset | |
| FixedAssetDescription | I_FixedAsset | FixedAssetDescription | ||
| AssetClass | I_FixedAsset | AssetClass | ||
| AssetAuthorizationContext | I_FixedAsset | AssetAuthorizationContext | ||
| AssetCapitalizationDate | P_FixedAssetVH1 | AssetCapitalizationDate |
@AbapCatalog: {sqlViewName: 'PFIFXDASTVH', preserveKey: true, compiler.compareFilter: true}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #COMPOSITE
@VDM.private:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
define view P_FixedAssetVH
as select from I_FixedAsset
left outer to one join P_FixedAssetVH1 on I_FixedAsset.CompanyCode = P_FixedAssetVH1.CompanyCode
and I_FixedAsset.MasterFixedAsset = P_FixedAssetVH1.MasterFixedAsset
and I_FixedAsset.FixedAsset = P_FixedAssetVH1.FixedAsset
{
key I_FixedAsset.CompanyCode,
key I_FixedAsset.MasterFixedAsset,
key I_FixedAsset.FixedAsset,
I_FixedAsset.FixedAssetDescription,
I_FixedAsset.AssetClass,
I_FixedAsset.AssetAuthorizationContext, //Needed for DCL
P_FixedAssetVH1.AssetCapitalizationDate //Mininum of AssetCapitalizationDate on ledger level
}
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