I_TrsyCshFlowDebtInvmtCodeT

DDL: I_TRSYCSHFLOWDEBTINVMTCODET SQL: IDIINDCT Type: view BASIC

Debt Investment Indicator - Text

I_TrsyCshFlowDebtInvmtCodeT (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_TrsyCshFlowDebtInvmtCodeT is a Basic CDS View that provides data about "Debt Investment Indicator - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields TrsyCshFlowDebtInvmtCode, Language. It has 2 associations to related views.

SAP Help Documentation

CategoryDebt Investment Indicator
Data CategoryText
StatusReleased
Purpose
This CDS view provides the prerequisites for answering the following business questions: What is the text of debt/investment status for financial transactions

Structure
Object types This view is built on the debt/investment text object type. Measures and attributes The most important measure is debt and investment.

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessFinancial Operations
Application ComponentFIN-FSCM-TRM
CapabilitiesLanguage-Dependent Text, Data Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities
PackageFinancial Operations for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li><p>What is the text of debt/investment status for financial transactions</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07t DomainText from

Associations (2)

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

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IDIINDCT view
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey TrsyCshFlowDebtInvmtCode view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
EndUserText.label Debt Investment Indicator - Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY TrsyCshFlowDebtInvmtCode Debt Investment Indicator
KEY Language dd07t ddlanguage Language Key
TrsyCshFlowDebtInvmtCodeName dd07t ddtext Short Text for Fixed Values
_Language _Language
_TrsyCshFlowDebtInvmtCode _TrsyCshFlowDebtInvmtCode

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_TrsyCshFlowDebtInvmtCodeT.
-- 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: IDIINDCT

CREATE VIEW I_TrsyCshFlowDebtInvmtCodeT AS
SELECT
  cast(left(domvalue_l, 1) as ftr_debt_invest_indicator preserving type) AS TrsyCshFlowDebtInvmtCode,
  DomainText.ddlanguage AS Language,
  DomainText.ddtext AS TrsyCshFlowDebtInvmtCodeName
FROM dd07t AS DomainText
LEFT OUTER JOIN I_TrsyCshFlowDebtInvmtCode AS _TrsyCshFlowDebtInvmtCode ON TrsyCshFlowDebtInvmtCode = _TrsyCshFlowDebtInvmtCode.TrsyCshFlowDebtInvmtCode  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;