C_SuplrEvalAttachment

DDL: C_SUPLREVALATTACHMENT SQL: CSUPLREVALATTCH Type: view CONSUMPTION

Supplier Evaluation Attachment

C_SuplrEvalAttachment is a Consumption CDS View that provides data about "Supplier Evaluation Attachment" in SAP S/4HANA. It reads from 1 data source (/bobf/d_atf_do) and exposes 8 fields with key field SuplrEvalAttchDocumentUUID.

Data Sources (1)

SourceAliasJoin Type
/bobf/d_atf_do Document from

Annotations (8)

NameValueLevelField
EndUserText.label Supplier Evaluation Attachment view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName CSUPLREVALATTCH view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY SuplrEvalAttchDocumentUUID
SuplrEvalAttachmentUUID
SuplrEvalReqQuestionUUID SupplierEvalReqQuestionAttch SuplrEvalReqQuestionUUID
ReferencedNodeUUID Attachment host_key UUID
MimeType /bobf/d_atf_do mimecode MIME type
SuplrEvalAttachmentName /bobf/d_atf_do name Zone name
SuplrEvalAttachmentTitle /bobf/d_atf_do description Well Code Des.
FileSize /bobf/d_atf_do filesize_content File Size

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 C_SuplrEvalAttachment.
-- 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: CSUPLREVALATTCH

CREATE VIEW C_SuplrEvalAttachment AS
SELECT
  cast(Document.db_key as /srmsmc/sev_attach_doc_uuid) AS SuplrEvalAttchDocumentUUID,
  cast(Document.parent_key as /srmsmc/sev_attachment_uuid) AS SuplrEvalAttachmentUUID,
  SupplierEvalReqQuestionAttch.SuplrEvalReqQuestionUUID AS SuplrEvalReqQuestionUUID,
  Attachment.host_key AS ReferencedNodeUUID,
  Document.mimecode AS MimeType,
  Document.name AS SuplrEvalAttachmentName,
  Document.description AS SuplrEvalAttachmentTitle,
  Document.filesize_content AS FileSize
FROM /bobf/d_atf_do AS Document
;