I_CustomizingRequestDocu

DDL: I_CUSTOMIZINGREQUESTDOCU SQL: ICUST_DOCU Type: view

Customizing Request: Tasks

I_CustomizingRequestDocu is a CDS View that provides data about "Customizing Request: Tasks" in SAP S/4HANA. It reads from 2 data sources (dokhl, doktl) and exposes 5 fields with key fields TransportRequestID, DocuLines.

Data Sources (2)

SourceAliasJoin Type
dokhl _TextHeader from
doktl _TextItem inner

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName ICUST_DOCU view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Customizing Request: Tasks view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY TransportRequestID dokhl object TRFM Object
KEY DocuLines
DocuFormat doktl dokformat Documentation format from SAPscript
DocuText doktl doktext Text line in the documentation module
_Requests _Requests

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_CustomizingRequestDocu.
-- 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: ICUST_DOCU

CREATE VIEW I_CustomizingRequestDocu AS
SELECT
  _TextHeader.object AS TransportRequestID,
  cast( _TextItem.line as abap.int4 ) AS DocuLines,
  _TextItem.dokformat AS DocuFormat,
  _TextItem.doktext AS DocuText
FROM dokhl AS _TextHeader
INNER JOIN doktl AS _TextItem ON /* join condition not captured in parsed metadata */
;