I_RequestTypeInt

DDL: I_REQUESTTYPEINT Type: view_entity

Request Type

I_RequestTypeInt is a CDS View that provides data about "Request Type" in SAP S/4HANA. It reads from 3 data sources (bctools_cust, dd07l, dd07t) and exposes 2 fields with key field domvalue_l.

Data Sources (3)

SourceAliasJoin Type
bctools_cust BctoolsCust left_outer
dd07l Domain from
dd07t DomainText left_outer

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Request Type view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY domvalue_l dd07l domvalue_l Lower Value
TransportRequestTypeText dd07t ddtext Short 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_RequestTypeInt.
-- 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_RequestTypeInt AS
SELECT
  Domain.domvalue_l AS domvalue_l,
  DomainText.ddtext AS TransportRequestTypeText
FROM dd07l AS Domain
LEFT OUTER JOIN dd07t AS DomainText ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN bctools_cust AS BctoolsCust ON /* join condition not captured in parsed metadata */
;