I_GLAcctLiquidityItemMapping

DDL: I_GLACCTLIQUIDITYITEMMAPPING SQL: IGLACCTLQTYITM Type: view BASIC Package: FCLM_PLANNING

Mapping G/L Accounts to Lqdy Items

I_GLAcctLiquidityItemMapping is a Basic CDS View that provides data about "Mapping G/L Accounts to Lqdy Items" in SAP S/4HANA. It reads from 1 data source (fclm_fcv_lqitem) and exposes 4 fields with key fields ChartOfAccounts, CompanyCode, GLAccount. Part of development package FCLM_PLANNING.

Data Sources (1)

SourceAliasJoin Type
fclm_fcv_lqitem fclm_fcv_lqitem from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IGLACCTLQTYITM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Mapping G/L Accounts to Lqdy Items view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ChartOfAccounts ktopl G/L Chart of Accounts
KEY CompanyCode bukrs Value
KEY GLAccount saknr G/L Account
LiquidityItem lqpos Liquidity Item

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_GLAcctLiquidityItemMapping.
-- 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: IGLACCTLQTYITM

CREATE VIEW I_GLAcctLiquidityItemMapping AS
SELECT
  ktopl AS ChartOfAccounts,
  bukrs AS CompanyCode,
  saknr AS GLAccount,
  lqpos AS LiquidityItem
FROM fclm_fcv_lqitem
;