C_FixedAssetMultipleCreationTP

DDL: C_FIXEDASSETMULTIPLECREATIONTP Type: view_entity CONSUMPTION Package: FINS_FAA_MD_RAP_UI

Fixed Asset Multiple Creation

C_FixedAssetMultipleCreationTP is a Consumption CDS View that provides data about "Fixed Asset Multiple Creation" in SAP S/4HANA. It reads from 1 data source (R_FixedAssetMultipleCreationTP) and exposes 5 fields with key fields CompanyCode, MasterFixedAsset, FixedAsset, RowIndex. It is exposed through 1 OData service (UI_FIXEDASSET_MANAGE). Part of development package FINS_FAA_MD_RAP_UI.

Data Sources (1)

SourceAliasJoin Type
R_FixedAssetMultipleCreationTP R_FixedAssetMultipleCreationTP projection

Annotations (7)

NameValueLevelField
EndUserText.label Fixed Asset Multiple Creation view
AccessControl.authorizationCheck #MANDATORY view
Metadata.allowExtensions true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

OData Services (1)

ServiceBindingVersionContractRelease
UI_FIXEDASSET_MANAGE UI_FIXEDASSET_MANAGE V4 C1 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY MasterFixedAsset MasterFixedAsset Fixed Asset
KEY FixedAsset FixedAsset Sub-number
KEY RowIndex RowIndex Row index
FixedAssetDescription FixedAssetDescription Description

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_FixedAssetMultipleCreationTP.
-- 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_FixedAssetMultipleCreationTP AS
SELECT
  CompanyCode,
  MasterFixedAsset,
  FixedAsset,
  RowIndex,
  FixedAssetDescription
FROM R_FixedAssetMultipleCreationTP
;