C_ChgRecdObjPgEngCollabn

DDL: C_CHGRECDOBJPGENGCOLLABN SQL: CCHGRCDOBJPGCLBN Type: view CONSUMPTION Package: VDM_PLMB_ENGCOLLABN

Change Record Reference Object Collaboration

C_ChgRecdObjPgEngCollabn is a Consumption CDS View that provides data about "Change Record Reference Object Collaboration" in SAP S/4HANA. It reads from 1 data source (I_EngCollaborationTP) and exposes 14 fields with key field ChangeRecordCollaborationUUID. Part of development package VDM_PLMB_ENGCOLLABN.

Data Sources (1)

SourceAliasJoin Type
I_EngCollaborationTP I_EngCollaborationTP from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CCHGRCDOBJPGCLBN view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
AbapCatalog.preserveKey true view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Change Record Reference Object Collaboration view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY ChangeRecordCollaborationUUID ChangeRecordCollaborationUUID
EngineeringCollaborationUUID EngineeringCollaborationUUID
ChangeRecordUUID ChangeRecordUUID NodeID
EngineeringCollaborationName EngineeringCollaborationName
EngineeringCollaborationType EngineeringCollaborationType
EngineeringCollaborationText EngineeringCollaborationText
EngineeringCollaborationStatus EngineeringCollaborationStatus
EngCollaborationSupplier EngCollaborationSupplier
PersonResponsible PersonResponsible Person Responsible
EngCollabnChgRecdURL
CreatedByUser CreatedByUser User Name
CreationDateTime CreationDateTime Timestamp
LastChangedByUser LastChangedByUser User Name
LastChangeDateTime LastChangeDateTime Timestamp

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_ChgRecdObjPgEngCollabn.
-- 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: CCHGRCDOBJPGCLBN

CREATE VIEW C_ChgRecdObjPgEngCollabn AS
SELECT
  ChangeRecordCollaborationUUID,
  EngineeringCollaborationUUID,
  ChangeRecordUUID,
  EngineeringCollaborationName,
  EngineeringCollaborationType,
  EngineeringCollaborationText,
  EngineeringCollaborationStatus,
  EngCollaborationSupplier,
  PersonResponsible,
  cast('' as engcollabnchgrecd_url) AS EngCollabnChgRecdURL,
  CreatedByUser,
  CreationDateTime,
  LastChangedByUser,
  LastChangeDateTime
FROM I_EngCollaborationTP
;