I_LiquidityItemText

DDL: I_LIQUIDITYITEMTEXT SQL: ILIQUIDITYITEMT Type: view BASIC

Liquidity Item - Text

I_LiquidityItemText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Financial Operations

I_LiquidityItemText is a Basic CDS View that provides data about "Liquidity Item - Text" in SAP S/4HANA. It reads from 1 data source (flqlpost) and exposes 5 fields with key fields LiquidityItem, Language. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Cash and Liquidity Management
Data CategoryText
StatusReleased
Purpose
This CDS view provides the prerequisites for answering the following business question: What are the descriptions of the defined liquidity items in different languages?

Structure
Measures and attributes Some important attributes are: Liquidity item Liquidity item desription Language

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessFinancial Operations
Application ComponentFIN-FSCM-CLM
CapabilitiesData Source for Defining CDS Entities, Association Target for Defining CDS Entities, Language-Dependent Text
PackageFinancial Operations for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
flqlpost flqlpost from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
EndUserText.label Liquidity Item - Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
Search.searchable true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ILIQUIDITYITEMT view
ObjectModel.representativeKey LiquidityItem view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY LiquidityItem lqpos Liquidity Item
KEY Language spras Off. Language
LiquidityItemName s_text Liquidity Item - Name
LongText l_text Liquidity Item: Description
_Language _Language

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_LiquidityItemText.
-- 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: ILIQUIDITYITEMT

CREATE VIEW I_LiquidityItemText AS
SELECT
  lqpos AS LiquidityItem,
  spras AS Language,
  s_text AS LiquidityItemName,
  l_text AS LongText
FROM flqlpost
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;