I_SuplrEvalRspQuestionText

DDL: I_SUPLREVALRSPQUESTIONTEXT SQL: ISUPRSPTXTQST Type: view BASIC

SuplrEvalRsp Question Text

I_SuplrEvalRspQuestionText is a Basic CDS View that provides data about "SuplrEvalRsp Question 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 Question 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 ISUPRSPTXTQST view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY TextCollectionUUID TextCollectionUUID UUID
SuplrEvalReqUUID UUID
Language Language Report Text Language
SuplrEvalRspQuestionText TextCollectionText Question

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_SuplrEvalRspQuestionText.
-- 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: ISUPRSPTXTQST

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