FAC_CDS_VE_COMMENT

DDL: FAC_CDS_VE_COMMENT SQL: FACVEGCMT Type: view

Validation Group Snapshot Comment

FAC_CDS_VE_COMMENT is a CDS View that provides data about "Validation Group Snapshot Comment" in SAP S/4HANA. It reads from 3 data sources (vec_comment, vec_grp_snapshot, I_UserDescription) and exposes 10 fields with key field cmt_uuid.

Data Sources (3)

SourceAliasJoin Type
vec_comment c from
vec_grp_snapshot g inner
I_UserDescription user left_outer

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName FACVEGCMT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Validation Group Snapshot Comment view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY cmt_uuid vec_comment cmt_uuid Comment UUID
drruuid vec_comment drruuid DR Request UUID
node_id vec_comment node_id Workflow Step
content vec_comment content Trusted Site Content
createdby vec_comment createdby User Name
createdat vec_comment createdat Time Stamp
FullName I_UserDescription UserDescription Full Name
node_type vec_grp_snapshot node_type Type
rule_id vec_grp_snapshot rule_id Rule ID
CurrentUser

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 FAC_CDS_VE_COMMENT.
-- 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: FACVEGCMT

CREATE VIEW FAC_CDS_VE_COMMENT AS
SELECT
  c.cmt_uuid AS cmt_uuid,
  c.drruuid AS drruuid,
  c.node_id AS node_id,
  c.content AS content,
  c.createdby AS createdby,
  c.createdat AS createdat,
  user.UserDescription AS FullName,
  g.node_type AS node_type,
  g.rule_id AS rule_id,
  $session.user AS CurrentUser
FROM vec_comment AS c
INNER JOIN vec_grp_snapshot AS g ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_UserDescription AS user ON /* join condition not captured in parsed metadata */
;