C_FixedAssetUsageObjectTotTP

DDL: C_FIXEDASSETUSAGEOBJECTTOTTP Type: view_entity CONSUMPTION Package: FINS_FAA_UO_VDM

Total Units of Fixed Asset Usage Object

C_FixedAssetUsageObjectTotTP is a Consumption CDS View that provides data about "Total Units of Fixed Asset Usage Object" in SAP S/4HANA. It reads from 1 data source (R_FixedAssetUsageObjectTotTP) and exposes 9 fields with key fields CompanyCode, FixedAssetUsageObject, FixedAssetUsageObjectDeprArea, ValidityEndDate. It is exposed through 2 OData services (ASQL_F4907, UI_FIXEDASSETUSAGEOBJECT). Part of development package FINS_FAA_UO_VDM.

Data Sources (1)

SourceAliasJoin Type
R_FixedAssetUsageObjectTotTP R_FixedAssetUsageObjectTotTP projection

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Total Units of Fixed Asset Usage Object view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #CONSUMPTION view
Metadata.allowExtensions true view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F4907 ASQL_F4907 C2 NOT_RELEASED
UI_FIXEDASSETUSAGEOBJECT UI_FIXEDASSETUSAGEOBJ_MNTN V2 C1 NOT_TO_BE_RELEASED_STABLE

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY FixedAssetUsageObject FixedAssetUsageObject
KEY FixedAssetUsageObjectDeprArea FixedAssetUsageObjectDeprArea
KEY ValidityEndDate ValidityEndDate ValidTo
ValidityStartDate ValidityStartDate Validity Start Date
CapacityInProductionUnit CapacityInProductionUnit
BaseUnit BaseUnit Unit of Measure
virtualAssetDepreciationAreaNameafbtxt
_CompanyCode _CompanyCode

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_FixedAssetUsageObjectTotTP.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW C_FixedAssetUsageObjectTotTP AS
SELECT
  CompanyCode,
  FixedAssetUsageObject,
  FixedAssetUsageObjectDeprArea,
  ValidityEndDate,
  ValidityStartDate,
  CapacityInProductionUnit,
  BaseUnit,
  virtual AssetDepreciationAreaName : afbtxt AS virtualAssetDepreciationAreaNameafbtxt
FROM R_FixedAssetUsageObjectTotTP
;