E_FixedAssetAssgmt
Extension View for FAA Master TDD Data
E_FixedAssetAssgmt is a Extension CDS View that provides data about "Extension View for FAA Master TDD Data" in SAP S/4HANA. It reads from 1 data source (faat_md_tdd) and exposes 4 fields with key fields CompanyCode, MasterFixedAsset, FixedAsset, ValidityEndDate.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| faat_md_tdd | Persistence | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | EFASSETASSGMT | view | |
| EndUserText.label | Extension View for FAA Master TDD Data | view | |
| VDM.viewType | #EXTENSION | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | faat_md_tdd | comp_code | |
| KEY | MasterFixedAsset | faat_md_tdd | asset_no | |
| KEY | FixedAsset | faat_md_tdd | asset_subno | |
| KEY | ValidityEndDate | faat_md_tdd | valid_to_date |
@AbapCatalog.sqlViewName: 'EFASSETASSGMT'
@EndUserText.label: 'Extension View for FAA Master TDD Data'
@VDM.viewType: #EXTENSION
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ObjectModel: { usageType.serviceQuality: #B,
usageType.sizeCategory: #XXL,
usageType.dataClass: #MASTER }
@Metadata.ignorePropagatedAnnotations: true
define view E_FixedAssetAssgmt
as select from faat_md_tdd as Persistence
{
key Persistence.comp_code as CompanyCode,
key Persistence.asset_no as MasterFixedAsset,
key Persistence.asset_subno as FixedAsset,
key Persistence.valid_to_date as ValidityEndDate
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FAAT_MD_TDD"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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