P_AssetAcctDetermination

DDL: P_ASSETACCTDETERMINATION Type: view BASIC

P_AssetAcctDetermination is a Basic CDS View in SAP S/4HANA. It reads from 4 data sources (faac_acctdet0, P_TF_AssetRedesignSwitchStatus, P_TF_AssetRedesignSwitchStatus, t095a).

Data Sources (4)

SourceAliasJoin Type
faac_acctdet0 faac_acctdet0 union_all
P_TF_AssetRedesignSwitchStatus P_TF_AssetRedesignSwitchStatus inner
P_TF_AssetRedesignSwitchStatus P_TF_AssetRedesignSwitchStatus inner
t095a t095a from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PFIASSETACCTDET view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view

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_AssetAcctDetermination.
-- 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_AssetAcctDetermination AS
SELECT *  -- field list not available in parsed metadata
FROM t095a
INNER JOIN P_TF_AssetRedesignSwitchStatus ON /* join condition not captured in parsed metadata */
-- UNION ALL with additional select branch(es): faac_acctdet0
;