P_AR_GLCashFlowRlvtAcct

DDL: P_AR_GLCASHFLOWRLVTACCT Type: view_entity COMPOSITE Package: GLO_FIN_IS_AR_CASH_JOURNAL

Argentina G/L Cash Flow Relevant Accounts

P_AR_GLCashFlowRlvtAcct is a Composite CDS View that provides data about "Argentina G/L Cash Flow Relevant Accounts" in SAP S/4HANA. It reads from 2 data sources (I_CompanyCode, I_GLAccountInCompanyCode) and exposes 3 fields with key fields CompanyCode, GLAccount. Part of development package GLO_FIN_IS_AR_CASH_JOURNAL.

Data Sources (2)

SourceAliasJoin Type
I_CompanyCode CompanyCodeInGLAccount inner
I_GLAccountInCompanyCode GLCashFlowAccount from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode I_GLAccountInCompanyCode CompanyCode Receiver Company Code
KEY GLAccount I_GLAccountInCompanyCode GLAccount General Ledger
GLAccountLongName GLAccountText GLAccountLongName Long 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_AR_GLCashFlowRlvtAcct.
-- 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_AR_GLCashFlowRlvtAcct AS
SELECT
  GLCashFlowAccount.CompanyCode AS CompanyCode,
  GLCashFlowAccount.GLAccount AS GLAccount,
  GLAccountText.GLAccountLongName AS GLAccountLongName
FROM I_GLAccountInCompanyCode AS GLCashFlowAccount
INNER JOIN I_CompanyCode AS CompanyCodeInGLAccount ON /* join condition not captured in parsed metadata */
;