CUAN_SVY_ANSWERID_SEARCH

DDL: CUAN_SVY_ANSWERID_SEARCH Type: view_entity

Survey: Answer ID Search

CUAN_SVY_ANSWERID_SEARCH is a CDS View that provides data about "Survey: Answer ID Search" in SAP S/4HANA. It reads from 1 data source (I_IBCSurveyMetadata) and exposes 6 fields with key field Survey_Id.

Data Sources (1)

SourceAliasJoin Type
I_IBCSurveyMetadata I_IBCSurveyMetadata from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Survey: Answer ID Search view
Search.searchable true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Survey_Id Survey
Provider SurveyProviderName
Version SurveyVersion
Question_Id SurveyQuestion
Answer_Id SurveyAnswer
Answer_Text SurveyAnswerName

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 CUAN_SVY_ANSWERID_SEARCH.
-- 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 CUAN_SVY_ANSWERID_SEARCH AS
SELECT
  Survey AS Survey_Id,
  SurveyProviderName AS Provider,
  SurveyVersion AS Version,
  SurveyQuestion AS Question_Id,
  SurveyAnswer AS Answer_Id,
  SurveyAnswerName AS Answer_Text
FROM I_IBCSurveyMetadata
;