I_FixedAssetPeriodTypeText
Fixed Asset - Period Type Text
I_FixedAssetPeriodTypeText is a Basic CDS View that provides data about "Fixed Asset - Period Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, PeriodType. It has 2 associations to related views. Part of development package ODATA_AA_ASSET_OVERVIEWPAGE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_FixedAssetPeriodType | _PeriodType | $projection.PeriodType = _PeriodType.PeriodType |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFASSETPETPT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | PeriodType | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Fixed Asset - Period Type Text | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | ddlanguage | ||
| KEY | PeriodType | |||
| PeriodTypeText | ||||
| _PeriodType | _PeriodType | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IFASSETPETPT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
dataCategory: #TEXT,
representativeKey: 'PeriodType',
usageType: {
dataClass: #META,
sizeCategory: #S,
serviceQuality: #A
}
}
@VDM.viewType: #BASIC
@EndUserText.label: 'Fixed Asset - Period Type Text'
define view I_FixedAssetPeriodTypeText
as select from dd07t
association [1..1] to I_FixedAssetPeriodType as _PeriodType on $projection.PeriodType = _PeriodType.PeriodType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language
key ddlanguage as Language,
@ObjectModel.foreignKey.association: '_PeriodType'
key cast(substring(domvalue_l, 1, 2) as faa_period_type preserving type) as PeriodType,
@Semantics.text
cast ( substring ( ddtext, 1, 60 ) as ddtext ) as PeriodTypeText,
@ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
_PeriodType,
_Language
}
where domname = 'FAA_D_PERIOD_TYPE' and as4local = 'A'
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