P_PL_SAFTOldestAcqFormRun

DDL: P_PL_SAFTOLDESTACQFORMRUN Type: view_entity CONSUMPTION Package: GLO_FIN_IS_SAFT_AA_PL

Run ID of the oldest Acquisition form

P_PL_SAFTOldestAcqFormRun is a Consumption CDS View that provides data about "Run ID of the oldest Acquisition form" in SAP S/4HANA. It reads from 1 data source (I_FixedAssetFormNumber) and exposes 4 fields with key fields CompanyCode, MasterFixedAsset, FixedAsset, StatryRptRunID. Part of development package GLO_FIN_IS_SAFT_AA_PL.

Data Sources (1)

SourceAliasJoin Type
I_FixedAssetFormNumber I_FixedAssetFormNumber from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
VDM.viewType #CONSUMPTION view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY MasterFixedAsset MasterFixedAsset Fixed Asset
KEY FixedAsset FixedAsset Sub-number
KEY StatryRptRunID

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 P_PL_SAFTOldestAcqFormRun.
-- 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 P_PL_SAFTOldestAcqFormRun AS
SELECT
  CompanyCode,
  MasterFixedAsset,
  FixedAsset,
  min(StatryRptRunID) AS StatryRptRunID
FROM I_FixedAssetFormNumber
;