I_GLAcctLiquidityItemEntry

DDL: I_GLACCTLIQUIDITYITEMENTRY Type: view_entity BASIC

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 1 data source (P_FLQACCINFO) and exposes 7 fields with key fields ChartOfAccounts, CompanyCode, InformationAccountFrom, InformationAccountTo.

Data Sources (1)

SourceAliasJoin Type
P_FLQACCINFO Entry from

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 (7)

KeyFieldSource TableSource FieldDescription
KEY ChartOfAccounts P_FLQACCINFO ChartOfAccounts Node Class
KEY CompanyCode P_FLQACCINFO CompanyCode Receiver Company Code
KEY InformationAccountFrom P_FLQACCINFO GLAccountFrom Account From
KEY InformationAccountTo P_FLQACCINFO GLAccountTo Account To
InclusionExclusionCode P_FLQACCINFO SignOfIncludeExclude Type of SIGN component in row type of a Ranges type
DefaultLiquidityItem P_FLQACCINFO DefaultLiquidityItem Default Value
FurtherEvaluationIsExpd P_FLQACCINFO FurtherEvaluation Furth.Evaluatn

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.GLAccountFrom AS InformationAccountFrom,
  Entry.GLAccountTo AS InformationAccountTo,
  Entry.SignOfIncludeExclude AS InclusionExclusionCode,
  Entry.DefaultLiquidityItem AS DefaultLiquidityItem,
  Entry.FurtherEvaluation AS FurtherEvaluationIsExpd
FROM P_FLQACCINFO AS Entry
;