I_FixedAssetUsageObject
Fixed Asset Usage Object
I_FixedAssetUsageObject is a Basic CDS View that provides data about "Fixed Asset Usage Object" in SAP S/4HANA. It reads from 1 data source (faat_uo) and exposes 15 fields with key fields CompanyCode, FixedAssetUsageObject. It has 6 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| faat_uo | UsageObject | from |
Associations (6)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_FixedAssetUsageObjectPeriod | _UsageObjectPeriod | $projection.CompanyCode = _UsageObjectPeriod.CompanyCode and $projection.FixedAssetUsageObject = _UsageObjectPeriod.FixedAssetUsageObject |
| [0..*] | I_FixedAssetUsageObjectTotal | _UsageObjectTotal | $projection.CompanyCode = _UsageObjectTotal.CompanyCode and $projection.FixedAssetUsageObject = _UsageObjectTotal.FixedAssetUsageObject |
| [0..*] | I_FixedAssetUsageObjWhereUsd | _UsageObjectWhereUsd | $projection.CompanyCode = _UsageObjectWhereUsd.CompanyCode and $projection.FixedAssetUsageObject = _UsageObjectWhereUsd.FixedAssetUsageObject |
| [0..1] | I_CompanyCode | _CompanyCode | $projection.CompanyCode = _CompanyCode.CompanyCode |
| [0..1] | I_UnitOfMeasure | _UnitOfMeasure | $projection.BaseUnit = _UnitOfMeasure.UnitOfMeasure |
| [0..1] | I_FxdAstUsageObjectLfcycSts | _UsageObjectLifecycleStatus | $projection.FixedAssetUsageObjLfcycSts = _UsageObjectLifecycleStatus.FixedAssetUsageObjLfcycSts |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFIXASSETUO | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.dataMaintenance | #RESTRICTED | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Fixed Asset Usage Object | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | FixedAssetUsageObject | view | |
| ObjectModel.compositionRoot | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view |
Fields (15)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | comp_code | ||
| KEY | FixedAssetUsageObject | usage_object | ||
| FixedAssetUsageObjectDesc | description | |||
| BaseUnit | base_uom | |||
| FixedAssetUsageObjLfcycSts | lifecycle_status | |||
| CreationDateTime | creation_datetime | |||
| CreatedByUser | creation_user | |||
| LastChangeDateTime | lastchange_datetime | |||
| LastChangedByUser | lastchange_user | |||
| _CompanyCode | _CompanyCode | |||
| _UnitOfMeasure | _UnitOfMeasure | |||
| _UsageObjectLifecycleStatus | _UsageObjectLifecycleStatus | |||
| _UsageObjectPeriod | _UsageObjectPeriod | |||
| _UsageObjectTotal | _UsageObjectTotal | |||
| _UsageObjectWhereUsd | _UsageObjectWhereUsd |
@AbapCatalog.sqlViewName: 'IFIXASSETUO'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.dataMaintenance: #RESTRICTED
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Fixed Asset Usage Object'
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'FixedAssetUsageObject'
@ObjectModel.compositionRoot: true
@ObjectModel.usageType: {
serviceQuality: #A,
sizeCategory: #XL,
dataClass: #MASTER
}
@ObjectModel:{
supportedCapabilities: [ #SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET ]
}
@Metadata.ignorePropagatedAnnotations: true
@VDM.lifecycle.contract.type:#PUBLIC_LOCAL_API
define view I_FixedAssetUsageObject
as select from faat_uo as UsageObject
association [0..*] to I_FixedAssetUsageObjectPeriod as _UsageObjectPeriod on $projection.CompanyCode = _UsageObjectPeriod.CompanyCode
and $projection.FixedAssetUsageObject = _UsageObjectPeriod.FixedAssetUsageObject
association [0..*] to I_FixedAssetUsageObjectTotal as _UsageObjectTotal on $projection.CompanyCode = _UsageObjectTotal.CompanyCode
and $projection.FixedAssetUsageObject = _UsageObjectTotal.FixedAssetUsageObject
association [0..*] to I_FixedAssetUsageObjWhereUsd as _UsageObjectWhereUsd on $projection.CompanyCode = _UsageObjectWhereUsd.CompanyCode
and $projection.FixedAssetUsageObject = _UsageObjectWhereUsd.FixedAssetUsageObject
association [0..1] to I_CompanyCode as _CompanyCode on $projection.CompanyCode = _CompanyCode.CompanyCode
association [0..1] to I_UnitOfMeasure as _UnitOfMeasure on $projection.BaseUnit = _UnitOfMeasure.UnitOfMeasure
association [0..1] to I_FxdAstUsageObjectLfcycSts as _UsageObjectLifecycleStatus on $projection.FixedAssetUsageObjLfcycSts = _UsageObjectLifecycleStatus.FixedAssetUsageObjLfcycSts
{
@ObjectModel.foreignKey.association: '_CompanyCode'
key comp_code as CompanyCode,
@ObjectModel.text.element: ['FixedAssetUsageObjectDesc']
key usage_object as FixedAssetUsageObject,
@Semantics.text: true
description as FixedAssetUsageObjectDesc,
@Semantics.unitOfMeasure:true
@ObjectModel: { foreignKey.association: '_UnitOfMeasure' }
base_uom as BaseUnit,
@ObjectModel.foreignKey.association:'_UsageObjectLifecycleStatus'
lifecycle_status as FixedAssetUsageObjLfcycSts,
@Semantics.systemDateTime.createdAt: true
creation_datetime as CreationDateTime,
@Semantics.user.createdBy: true
creation_user as CreatedByUser,
// @Semantics.systemDateTime.lastChangedAt: true
@Semantics.systemDateTime.localInstanceLastChangedAt: true
lastchange_datetime as LastChangeDateTime,
// @Semantics.systemDateTime.lastChangedAt: true
// draft_lastchange_datetime as DraftLastChangedDateTime,
@Semantics.user.lastChangedBy: true
lastchange_user as LastChangedByUser,
_CompanyCode,
_UnitOfMeasure,
_UsageObjectLifecycleStatus,
@ObjectModel.association.type:#TO_COMPOSITION_CHILD
_UsageObjectPeriod,
@ObjectModel.association.type:#TO_COMPOSITION_CHILD
_UsageObjectTotal,
@ObjectModel.association.type:#TO_COMPOSITION_CHILD
_UsageObjectWhereUsd
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FAAT_UO"
],
"ASSOCIATED":
[
"I_COMPANYCODE",
"I_FIXEDASSETUSAGEOBJECTPERIOD",
"I_FIXEDASSETUSAGEOBJECTTOTAL",
"I_FIXEDASSETUSAGEOBJWHEREUSD",
"I_FXDASTUSAGEOBJECTLFCYCSTS",
"I_UNITOFMEASURE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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