A_FixedAssetUsageObjectPeriod

DDL: A_FIXEDASSETUSAGEOBJECTPERIOD Type: view_entity CONSUMPTION Package: FINS_FAA_UO_VDM

Period Units of Fixed Asset Usage Object

A_FixedAssetUsageObjectPeriod is a Consumption CDS View that provides data about "Period Units of Fixed Asset Usage Object" in SAP S/4HANA. It reads from 1 data source (R_FixedAssetUsageObjectPerdTP) and exposes 6 fields with key fields CompanyCode, FixedAssetUsageObject, ValidityEndDate. It is exposed through 1 OData service (API_FIXEDASSETUSAGEOBJECT). Part of development package FINS_FAA_UO_VDM.

Data Sources (1)

SourceAliasJoin Type
R_FixedAssetUsageObjectPerdTP R_FixedAssetUsageObjectPerdTP projection

Annotations (8)

NameValueLevelField
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Period Units of Fixed Asset Usage Object view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
Metadata.ignorePropagatedAnnotations true view

OData Services (1)

ServiceBindingVersionContractRelease
API_FIXEDASSETUSAGEOBJECT API_FIXEDASSETUSAGEOBJECT V4 C2 C1

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode
KEY FixedAssetUsageObject FixedAssetUsageObject
KEY ValidityEndDate ValidityEndDate
ValidityStartDate ValidityStartDate
PeriodPlannedQtyInProdnUnit PeriodPlannedQtyInProdnUnit
BaseUnit BaseUnit
@VDM.viewType: #CONSUMPTION
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@VDM.usage.type: [#TRANSACTIONAL_PROCESSING_SERVICE]
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Period Units of Fixed Asset Usage Object'


@ObjectModel.usageType: {
        serviceQuality: #A,
        sizeCategory: #M,
        dataClass: #MASTER
}
@Metadata.ignorePropagatedAnnotations: true

define view entity A_FixedAssetUsageObjectPeriod 
        as projection on R_FixedAssetUsageObjectPerdTP 
{

  key CompanyCode, 
  key FixedAssetUsageObject, 
  @Semantics.businessDate.to: true
  key ValidityEndDate, 
  @Semantics.businessDate.from: true
  ValidityStartDate,
  
  @Semantics.quantity.unitOfMeasure: 'BaseUnit'
  PeriodPlannedQtyInProdnUnit,
  @Semantics.unitOfMeasure: true
  BaseUnit,

  _UsageObject : redirected to parent A_FixedAssetUsageObject 
  }