A_ChangeMstrObjectMgmtRecord

DDL: A_CHANGEMSTROBJECTMGMTRECORD Type: view_entity CONSUMPTION

Change Number Object Management Records

A_ChangeMstrObjectMgmtRecord is a Consumption CDS View that provides data about "Change Number Object Management Records" in SAP S/4HANA. It reads from 1 data source (I_ChangeMstrObjectMgmtRecordTP) and exposes 23 fields with key fields ChangeNumber, SAPObjectType, SAPObjectTechnicalID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ChangeMstrObjectMgmtRecordTP I_ChangeMstrObjectMgmtRecordTP from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_ChangeMasterAltDate_1 _ChangeMasterAltDate $projection.ChangeNumber = _ChangeMasterAltDate.ChangeNumber and $projection.ChgNmbrAlternativeDateCounter = _ChangeMasterAltDate.ChgNmbrAlternativeDateCounter

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Change Number Object Management Records view

Fields (23)

KeyFieldSource TableSource FieldDescription
KEY ChangeNumber ChangeNumber Change Number
KEY SAPObjectType SAPObjectType SOT Name
KEY SAPObjectTechnicalID SAPObjectTechnicalID
SAPObjectReadableID SAPObjectReadableID
ObjMgmtRecdObject ObjMgmtRecdObject
ChgNmbrAlternativeDateID ChgNmbrAlternativeDateID
ObjMgmtRecdDescription ObjMgmtRecdDescription
ObjMgmtRecdItemUUID ObjMgmtRecdItemUUID
ObjMgmtRecdLastChangedAt ObjMgmtRecdLastChangedAt
ObjMgmtRecdLastChangedBy ObjMgmtRecdLastChangedBy
ObjMgmtRecdCreationDate ObjMgmtRecdCreationDate
ObjMgmtRecdCreatedBy ObjMgmtRecdCreatedBy
ObjMgmtRecdObjLastChangedAt ObjMgmtRecdObjLastChangedAt
ObjMgmtRecdObjLastChangedBy ObjMgmtRecdObjLastChangedBy
ObjMgmtRecdObjIsLockedForChg ObjMgmtRecdObjIsLockedForChg
ObjMgmtRecdObjIsBaselined ObjMgmtRecdObjIsBaselined
ObjMgmtRecdObjIsPlanned ObjMgmtRecdObjIsPlanned
ObjMgmtRecdObjRevisionLevel ObjMgmtRecdObjRevisionLevel
ChangeNumberObjectType ChangeNumberObjectType
ChgNmbrAlternativeDateCounter ChgNmbrAlternativeDateCounter
ChangeNumberLastChgdDateTime ChangeNumberLastChgdDateTime
_ChangeMaster _ChangeMaster
_ChangeMasterAltDate _ChangeMasterAltDate

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 A_ChangeMstrObjectMgmtRecord.
-- 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 A_ChangeMstrObjectMgmtRecord AS
SELECT
  ChangeNumber,
  SAPObjectType,
  SAPObjectTechnicalID,
  SAPObjectReadableID,
  ObjMgmtRecdObject,
  ChgNmbrAlternativeDateID,
  ObjMgmtRecdDescription,
  ObjMgmtRecdItemUUID,
  ObjMgmtRecdLastChangedAt,
  ObjMgmtRecdLastChangedBy,
  ObjMgmtRecdCreationDate,
  ObjMgmtRecdCreatedBy,
  ObjMgmtRecdObjLastChangedAt,
  ObjMgmtRecdObjLastChangedBy,
  ObjMgmtRecdObjIsLockedForChg,
  ObjMgmtRecdObjIsBaselined,
  ObjMgmtRecdObjIsPlanned,
  ObjMgmtRecdObjRevisionLevel,
  ChangeNumberObjectType,
  ChgNmbrAlternativeDateCounter,
  ChangeNumberLastChgdDateTime
FROM I_ChangeMstrObjectMgmtRecordTP
LEFT OUTER JOIN A_ChangeMasterAltDate_1 AS _ChangeMasterAltDate ON ChangeNumber = _ChangeMasterAltDate.ChangeNumber AND ChgNmbrAlternativeDateCounter = _ChangeMasterAltDate.ChgNmbrAlternativeDateCounter  -- association [0..1]
;