P_FinClsgGLAccountInCoCode

DDL: P_FINCLSGGLACCOUNTINCOCODE Type: view_entity COMPOSITE

P_FinClsgGLAccountInCoCode is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_GLAccountInCompanyCode) and exposes 4 fields with key fields GLAccount, CompanyCode.

Data Sources (1)

SourceAliasJoin Type
I_GLAccountInCompanyCode CompanyCode from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY GLAccount I_GLAccountInCompanyCode GLAccount General Ledger
KEY CompanyCode CompanyCode Receiver Company Code
GLAccountCurrency GLAccountCurrency Currency
ReconciliationAccountType ReconciliationAccountType Reconcil. ID

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_FinClsgGLAccountInCoCode.
-- 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_FinClsgGLAccountInCoCode AS
SELECT
  CompanyCode.GLAccount AS GLAccount,
  CompanyCode,
  GLAccountCurrency,
  ReconciliationAccountType
FROM I_GLAccountInCompanyCode AS CompanyCode
;