P_AssetBalanceSheetAccount

DDL: P_ASSETBALANCESHEETACCOUNT Type: view BASIC Package: FINS_FIS_AA_MD

Asset Balance Sheet Account

P_AssetBalanceSheetAccount is a Basic CDS View that provides data about "Asset Balance Sheet Account" in SAP S/4HANA. It reads from 5 data sources (P_TF_AssetBalanceSheetAccount, P_TF_AssetRedesignSwitchStatus, P_TF_AssetRedesignSwitchStatus, t001, t095) and exposes 9 fields with key fields CompanyCode, AssetAccountDetermination, AssetRealDepreciationArea, AssetAccountDetermination, AssetRealDepreciationArea. Part of development package FINS_FIS_AA_MD.

Data Sources (5)

SourceAliasJoin Type
P_TF_AssetBalanceSheetAccount P_TF_AssetBalanceSheetAccount union_all
P_TF_AssetRedesignSwitchStatus P_TF_AssetRedesignSwitchStatus inner
P_TF_AssetRedesignSwitchStatus P_TF_AssetRedesignSwitchStatus inner
t001 t001 from
t095 t095 inner

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PFIASSETBALACCT 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 (9)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode t001 bukrs Value
KEY AssetAccountDetermination t095 ktogr Account Determ.
KEY AssetRealDepreciationArea t095 afabe
ChartOfAccounts t095 ktopl Node Class
IsActiveXkeyCompanyCode
KEY AssetAccountDetermination AssetAccountDetermination Account Determ.
KEY AssetRealDepreciationArea AssetRealDepreciationArea
ChartOfAccounts ChartOfAccounts Node Class
AcqnProdnCostGLAccount AcqnProdnCostGLAccount

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_AssetBalanceSheetAccount.
-- 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_AssetBalanceSheetAccount AS
SELECT
  t001.bukrs AS CompanyCode,
  t095.ktogr AS AssetAccountDetermination,
  t095.afabe AS AssetRealDepreciationArea,
  t095.ktopl AS ChartOfAccounts,
  t095.ktansw as AcqnProdnCostGLAccount AS IsActiveXkeyCompanyCode,
  AcqnProdnCostGLAccount
FROM t001
INNER JOIN t095 ON /* join condition not captured in parsed metadata */
INNER JOIN P_TF_AssetRedesignSwitchStatus ON /* join condition not captured in parsed metadata */
-- UNION ALL with additional select branch(es): P_TF_AssetBalanceSheetAccount
;