I_RU_VATReturnLineText

DDL: I_RU_VATRETURNLINETEXT SQL: IRUVATLINETEXT Type: view BASIC

Vat Return Line Items Texts

I_RU_VATReturnLineText is a Basic CDS View that provides data about "Vat Return Line Items Texts" in SAP S/4HANA. It reads from 1 data source (firud_vatitemt) and exposes 7 fields with key fields Language, RU_VATReturnVersion, RU_VATReturnSection, RU_VATReturnLine. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
firud_vatitemt firud_vatitemt from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_RU_VATReturnLine _I_RU_VATReturnLine $projection.RU_VATReturnVersion = _I_RU_VATReturnLine.RU_VATReturnVersion and $projection.RU_VATReturnSection = _I_RU_VATReturnLine.RU_VATReturnSection and $projection.RU_VATReturnLine = _I_RU_VATReturnLine.RU_VATReturnLine
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IRUVATLINETEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
EndUserText.label Vat Return Line Items Texts view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey RU_VATReturnLine view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
KEY RU_VATReturnVersion version XML Vers.
KEY RU_VATReturnSection sect VAT Return Section
KEY RU_VATReturnLine line VAT Return Line Item
VATReturnItemDescription short_description Short text
_I_RU_VATReturnLine _I_RU_VATReturnLine
_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_RU_VATReturnLineText.
-- 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: IRUVATLINETEXT

CREATE VIEW I_RU_VATReturnLineText AS
SELECT
  spras AS Language,
  version AS RU_VATReturnVersion,
  sect AS RU_VATReturnSection,
  line AS RU_VATReturnLine,
  short_description AS VATReturnItemDescription
FROM firud_vatitemt
LEFT OUTER JOIN I_RU_VATReturnLine AS _I_RU_VATReturnLine ON RU_VATReturnVersion = _I_RU_VATReturnLine.RU_VATReturnVersion AND RU_VATReturnSection = _I_RU_VATReturnLine.RU_VATReturnSection AND RU_VATReturnLine = _I_RU_VATReturnLine.RU_VATReturnLine  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;