I_ProcmtHubFixedAsset

DDL: I_PROCMTHUBFIXEDASSET SQL: IPROCHUBFXDASSET Type: view BASIC Package: APPL_PROC_HUB_GF

Fixed Asset

I_ProcmtHubFixedAsset is a Basic CDS View that provides data about "Fixed Asset" in SAP S/4HANA. It reads from 1 data source (mmpur_ext_anla) and exposes 4 fields with key fields CompanyCode, ProcmtHubMasterFixedAsset, ExtSourceSystem. Part of development package APPL_PROC_HUB_GF.

Data Sources (1)

SourceAliasJoin Type
mmpur_ext_anla mmpur_ext_anla from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IPROCHUBFXDASSET view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Fixed Asset view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode companycode Receiver Company Code
KEY ProcmtHubMasterFixedAsset masterfixedasset Fixed Asset
KEY ExtSourceSystem extsourcesystem Connected System ID
AssetDescription assetdescription Asset 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 I_ProcmtHubFixedAsset.
-- 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.
-- SQL view name: IPROCHUBFXDASSET

CREATE VIEW I_ProcmtHubFixedAsset AS
SELECT
  CompanyCode,
  masterfixedasset AS ProcmtHubMasterFixedAsset,
  ExtSourceSystem,
  AssetDescription
FROM mmpur_ext_anla
;