P_AssetAcctDeterminationText

DDL: P_ASSETACCTDETERMINATIONTEXT Type: view BASIC

P_AssetAcctDeterminationText is a Basic CDS View in SAP S/4HANA. It reads from 4 data sources (faac_acctdet0_t, P_TF_AssetRedesignSwitchStatus, P_TF_AssetRedesignSwitchStatus, t095t) and exposes 4 fields with key fields AssetAccountDetermination, Language, Language.

Data Sources (4)

SourceAliasJoin Type
faac_acctdet0_t faac_acctdet0_t union_all
P_TF_AssetRedesignSwitchStatus P_TF_AssetRedesignSwitchStatus inner
P_TF_AssetRedesignSwitchStatus P_TF_AssetRedesignSwitchStatus inner
t095t t095t from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PFIASSETACCTDETT 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

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY AssetAccountDetermination ktogr Account Determ.
KEY Language spras Report Text Language
KEY Language language Report Text Language
AssetAccountDeterminationDesc description_short Short Text

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_AssetAcctDeterminationText.
-- 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_AssetAcctDeterminationText AS
SELECT
  ktogr AS AssetAccountDetermination,
  spras AS Language,
  description_short AS AssetAccountDeterminationDesc
FROM t095t
INNER JOIN P_TF_AssetRedesignSwitchStatus ON /* join condition not captured in parsed metadata */
-- UNION ALL with additional select branch(es): faac_acctdet0_t
;