I_CADocumentGLItemAddlData

DDL: I_CADOCUMENTGLITEMADDLDATA Type: view_entity BASIC

Document G/L Item Additional Data

I_CADocumentGLItemAddlData is a Basic CDS View that provides data about "Document G/L Item Additional Data" in SAP S/4HANA. It reads from 1 data source (dfkkopkx) and exposes 5 fields with key fields CADocumentNumber, CAGLItemNumber. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dfkkopkx dfkkopkx from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_CADocument _CADocument $projection.CADocumentNumber = _CADocument.CADocumentNumber
[1..1] I_CADocumentGLItem _CADocumentGLItem $projection.CADocumentNumber = _CADocumentGLItem.CADocumentNumber and $projection.CAGLItemNumber = _CADocumentGLItem.CAGLItemNumber

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Document G/L Item Additional Data view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #NONE view
ObjectModel.sapObjectNodeType.name ContrAcctgDocGenLdgrItmAddlDta view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CADocumentNumber opbel Reopen
KEY CAGLItemNumber opupk Item
CADocumentGLItemText sgtxt Text
_CADocument _CADocument
_CADocumentGLItem _CADocumentGLItem

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_CADocumentGLItemAddlData.
-- 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_CADocumentGLItemAddlData AS
SELECT
  opbel AS CADocumentNumber,
  opupk AS CAGLItemNumber,
  sgtxt AS CADocumentGLItemText
FROM dfkkopkx
LEFT OUTER JOIN I_CADocument AS _CADocument ON CADocumentNumber = _CADocument.CADocumentNumber  -- association [1..1]
LEFT OUTER JOIN I_CADocumentGLItem AS _CADocumentGLItem ON CADocumentNumber = _CADocumentGLItem.CADocumentNumber AND CAGLItemNumber = _CADocumentGLItem.CAGLItemNumber  -- association [1..1]
;