I_MM_GLAccountVH

DDL: I_MM_GLACCOUNTVH SQL: IMMGLACCT_VH Type: view COMPOSITE

Purchasing GL Account Value Help

I_MM_GLAccountVH is a Composite CDS View that provides data about "Purchasing GL Account Value Help" in SAP S/4HANA. It reads from 1 data source (I_GLAccountStdVH) and exposes 5 fields with key fields GLAccount, CompanyCode. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_GLAccountStdVH GLAccount from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_GlAccountTextInCompanycode _Text $projection.CompanyCode = _Text.CompanyCode and $projection.GLAccount = _Text.GLAccount and _Text.Language = $session.system_language

Annotations (14)

NameValueLevelField
VDM.viewType #COMPOSITE view
EndUserText.label Purchasing GL Account Value Help view
AbapCatalog.sqlViewName IMMGLACCT_VH view
AbapCatalog.compiler.compareFilter true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.representativeKey GLAccount view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #NOT_REQUIRED view
Search.searchable true view
Consumption.ranked true view
AccessControl.authorizationCheck #CHECK view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY GLAccount I_GLAccountStdVH GLAccount General Ledger
KEY CompanyCode I_GLAccountStdVH CompanyCode Receiver Company Code
ChartOfAccounts I_GLAccountStdVH ChartOfAccounts Node Class
GLAccountLongName _Text GLAccountLongName Long Text
_Text _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 I_MM_GLAccountVH.
-- 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.
-- SQL view name: IMMGLACCT_VH

CREATE VIEW I_MM_GLAccountVH AS
SELECT
  GLAccount.GLAccount AS GLAccount,
  GLAccount.CompanyCode AS CompanyCode,
  GLAccount.ChartOfAccounts AS ChartOfAccounts,
  _Text.GLAccountLongName AS GLAccountLongName
FROM I_GLAccountStdVH AS GLAccount
LEFT OUTER JOIN I_GlAccountTextInCompanycode AS _Text ON CompanyCode = _Text.CompanyCode AND GLAccount = _Text.GLAccount AND _Text.Language = $session.system_language  -- association [0..1]
;