A_ChangeMstrObMgReMaterial

DDL: A_CHANGEMSTROBMGREMATERIAL Type: view_entity CONSUMPTION Package: VDM_PLMB_ECN_API

Change Number Object Management Records - Material

A_ChangeMstrObMgReMaterial is a Consumption CDS View that provides data about "Change Number Object Management Records - Material" in SAP S/4HANA. It reads from 1 data source (I_ChangeMstrObMgReMaterialTP) and exposes 19 fields with key fields ChangeNumber, Material. It has 1 association to related views. It is exposed through 2 OData services (ASQL_F1813A, ASQL_F6503). Part of development package VDM_PLMB_ECN_API.

Data Sources (1)

SourceAliasJoin Type
I_ChangeMstrObMgReMaterialTP I_ChangeMstrObMgReMaterialTP 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 - Material view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F1813A ASQL_F1813A C2 NOT_RELEASED
ASQL_F6503 ASQL_F6503 C2 NOT_RELEASED

Fields (19)

KeyFieldSource TableSource FieldDescription
KEY ChangeNumber ChangeNumber Change Number
KEY Material Material Vehicle Model
ChgNmbrAlternativeDateID ChgNmbrAlternativeDateID
SAPObjectTechnicalID SAPObjectTechnicalID
ObjMgmtRecdDescription ObjMgmtRecdDescription
ObjMgmtRecdItemUUID ObjMgmtRecdItemUUID
ObjMgmtRecdLastChangedAt ObjMgmtRecdLastChangedAt
ObjMgmtRecdLastChangedBy ObjMgmtRecdLastChangedBy
ObjMgmtRecdCreationDate ObjMgmtRecdCreationDate
ObjMgmtRecdCreatedBy ObjMgmtRecdCreatedBy
ObjMgmtRecdObjLastChangedAt ObjMgmtRecdObjLastChangedAt
ObjMgmtRecdObjLastChangedBy ObjMgmtRecdObjLastChangedBy
ObjMgmtRecdObjIsLockedForChg ObjMgmtRecdObjIsLockedForChg
ObjMgmtRecdObjIsPlanned ObjMgmtRecdObjIsPlanned
ObjMgmtRecdObjRevisionLevel ObjMgmtRecdObjRevisionLevel
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_ChangeMstrObMgReMaterial.
-- 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_ChangeMstrObMgReMaterial AS
SELECT
  ChangeNumber,
  Material,
  ChgNmbrAlternativeDateID,
  SAPObjectTechnicalID,
  ObjMgmtRecdDescription,
  ObjMgmtRecdItemUUID,
  ObjMgmtRecdLastChangedAt,
  ObjMgmtRecdLastChangedBy,
  ObjMgmtRecdCreationDate,
  ObjMgmtRecdCreatedBy,
  ObjMgmtRecdObjLastChangedAt,
  ObjMgmtRecdObjLastChangedBy,
  ObjMgmtRecdObjIsLockedForChg,
  ObjMgmtRecdObjIsPlanned,
  ObjMgmtRecdObjRevisionLevel,
  ChgNmbrAlternativeDateCounter,
  ChangeNumberLastChgdDateTime
FROM I_ChangeMstrObMgReMaterialTP
LEFT OUTER JOIN A_ChangeMasterAltDate_1 AS _ChangeMasterAltDate ON ChangeNumber = _ChangeMasterAltDate.ChangeNumber AND ChgNmbrAlternativeDateCounter = _ChangeMasterAltDate.ChgNmbrAlternativeDateCounter  -- association [0..1]
;