I_SuplrEvalRspSectionText

DDL: I_SUPLREVALRSPSECTIONTEXT SQL: ISUPRSPTXTSEC Type: view BASIC

SuplrEvalRsp Section Text

I_SuplrEvalRspSectionText is a Basic CDS View that provides data about "SuplrEvalRsp Section Text" in SAP S/4HANA. It reads from 1 data source (P_SLCTextCollection) and exposes 4 fields with key field TextCollectionUUID.

Data Sources (1)

SourceAliasJoin Type
P_SLCTextCollection P_SLCTextCollection from

Annotations (9)

NameValueLevelField
EndUserText.label SuplrEvalRsp Section Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ISUPRSPTXTSEC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY TextCollectionUUID TextCollectionUUID UUID
SuplrEvalReqUUID UUID
Language Language Report Text Language
SuplrEvalRspSectionText TextCollectionText Section

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_SuplrEvalRspSectionText.
-- 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: ISUPRSPTXTSEC

CREATE VIEW I_SuplrEvalRspSectionText AS
SELECT
  TextCollectionUUID,
  cast(HostUUID as /srmsmc/sev_uuid preserving type) AS SuplrEvalReqUUID,
  Language,
  TextCollectionText AS SuplrEvalRspSectionText
FROM P_SLCTextCollection
;