I_GLAcctLiquidityItemEntry

DDL: I_GLACCTLIQUIDITYITEMENTRY Type: view_entity BASIC Package: FCLM_INFOACCOUNT

Default Liquidity Item Entries

I_GLAcctLiquidityItemEntry is a Basic CDS View that provides data about "Default Liquidity Item Entries" in SAP S/4HANA. It reads from 2 data sources (P_FLQACCINFO, P_FLQCALLIQ) and exposes 25 fields with key fields ChartOfAccounts, CompanyCode, GLAccount, InfoAcctPrioCode, InformationAccountFrom. Part of development package FCLM_INFOACCOUNT.

Data Sources (2)

SourceAliasJoin Type
P_FLQACCINFO Entry from
P_FLQCALLIQ Entry union_all

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Default Liquidity Item Entries view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view

Fields (25)

KeyFieldSource TableSource FieldDescription
KEY ChartOfAccounts P_FLQCALLIQ ChartOfAccounts Node Class
KEY CompanyCode P_FLQCALLIQ CompanyCode Receiver Company Code
KEY GLAccount P_FLQCALLIQ GLAccount General Ledger
KEY InfoAcctPrioCode InfoAcctPrioCode
KEY InformationAccountFrom P_FLQCALLIQ GLAccountFrom From Account Number
KEY InformationAccountTo P_FLQCALLIQ GLAccountTo Up to Account No.
KEY CashInformationAccountVersion CashInformationAccountVersion
GeneralLedgerClassification P_FLQCALLIQ glaccclassification
InclusionExclusionCode P_FLQCALLIQ SignOfIncludeExclude
DefaultLiquidityItem P_FLQCALLIQ DefaultLiquidityItem Liquidity Item
FurtherEvaluationIsExpd P_FLQCALLIQ FurtherEvaluation Furth.Evaluatn
OriginalCompanyCode OriginalCompanyCode Company Code
ChartOfAccounts Node Class
KEY CompanyCode P_FLQCALLIQ CompanyCode Receiver Company Code
KEY GLAccount P_FLQCALLIQ GLAccount General Ledger
KEY InfoAcctPrioCode InfoAcctPrioCode
KEY InformationAccountFrom P_FLQCALLIQ GLAccountFrom From Account Number
KEY InformationAccountTo P_FLQCALLIQ GLAccountTo Up to Account No.
KEY CashInformationAccountVersion CashInformationAccountVersion
GeneralLedgerClassification P_FLQCALLIQ glaccclassification
InclusionExclusionCode P_FLQCALLIQ SignOfIncludeExclude
DefaultLiquidityItem P_FLQCALLIQ DefaultLiquidityItem Liquidity Item
FurtherEvaluationIsExpd P_FLQCALLIQ FurtherEvaluation Furth.Evaluatn
OriginalCompanyCode OriginalCompanyCode Company Code
CashLiqRuleActivation

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_GLAcctLiquidityItemEntry.
-- 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 I_GLAcctLiquidityItemEntry AS
SELECT
  Entry.ChartOfAccounts AS ChartOfAccounts,
  Entry.CompanyCode AS CompanyCode,
  Entry.GLAccount AS GLAccount,
  InfoAcctPrioCode,
  Entry.GLAccountFrom AS InformationAccountFrom,
  Entry.GLAccountTo AS InformationAccountTo,
  CashInformationAccountVersion,
  Entry.glaccclassification AS GeneralLedgerClassification,
  Entry.SignOfIncludeExclude AS InclusionExclusionCode,
  Entry.DefaultLiquidityItem AS DefaultLiquidityItem,
  Entry.FurtherEvaluation AS FurtherEvaluationIsExpd,
  OriginalCompanyCode,
  cast( 'Inactivated' as char20 ) AS CashLiqRuleActivation
FROM P_FLQACCINFO AS Entry
-- UNION ALL with additional select branch(es): P_FLQCALLIQ
;