I_SDDocumentItemLongTextID

DDL: I_SDDOCUMENTITEMLONGTEXTID Type: view BASIC

Long Text ID of Sales Document Item

I_SDDocumentItemLongTextID is a Basic CDS View that provides data about "Long Text ID of Sales Document Item" in SAP S/4HANA. It reads from 1 data source (I_TextObjectType) and exposes 3 fields with key field LongTextID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_TextObjectType I_TextObjectType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_TextObjectTypeText _Text $projection.LongTextID = _Text.TextObjectType and $projection.TextObjectCategory = _Text.TextObjectCategory

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ISDDOCILNGTXTID view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey LongTextID view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
EndUserText.label Long Text ID of Sales Document Item view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY LongTextID TextObjectType Text ID
TextObjectCategory TextObjectCategory Text object
_Text _Text

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_SDDocumentItemLongTextID.
-- 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_SDDocumentItemLongTextID AS
SELECT
  TextObjectType AS LongTextID,
  TextObjectCategory
FROM I_TextObjectType
LEFT OUTER JOIN I_TextObjectTypeText AS _Text ON LongTextID = _Text.TextObjectType AND TextObjectCategory = _Text.TextObjectCategory  -- association [0..*]
;