A_ChgRecdFuncLocBOM

DDL: A_CHGRECDFUNCLOCBOM Type: view_entity COMPOSITE

Functional Loc BOM assign to Chg Records

A_ChgRecdFuncLocBOM is a Composite CDS View that provides data about "Functional Loc BOM assign to Chg Records" in SAP S/4HANA. It reads from 1 data source (I_ChgRecdFuncLocBillOfMatTP_2) and exposes 24 fields with key field ChangeRecordReferenceUUID.

Data Sources (1)

SourceAliasJoin Type
I_ChgRecdFuncLocBillOfMatTP_2 I_ChgRecdFuncLocBillOfMatTP_2 from

Annotations (8)

NameValueLevelField
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Functional Loc BOM assign to Chg Records view

Fields (24)

KeyFieldSource TableSource FieldDescription
KEY ChangeRecordReferenceUUID ChangeRecordReferenceUUID UUID
ChangeRecord ChangeRecord Char20
FunctionalLocation FunctionalLocation Object ID
Plant Plant Valuation Area
BillOfMaterialVariantUsage BillOfMaterialVariantUsage Usage
BillOfMaterialVariant BillOfMaterialVariant AlternativeBOM
ChangeRecordUUID ChangeRecordUUID NodeID
ChangeRecordReferenceType ChangeRecordReferenceType Object Type
ChangeRecordReferenceSubtype ChangeRecordReferenceSubtype Subtype
ChangeRecordReference ChangeRecordReference Ref. Object ID
ParentChangeRecordRefUUID ParentChangeRecordRefUUID Node ID
IsMainReference IsMainReference Main Reference
BillOfMaterialCategory BillOfMaterialCategory BOM category
ChangeNumber ChangeNumber Change Number
CreatedByUser CreatedByUser User Name
CreationDateTime CreationDateTime Timestamp
LastChangedByUser LastChangedByUser User Name
LastChangeDateTime LastChangeDateTime Timestamp
ChangeRecordItemRelevance ChangeRecordItemRelevance Relevance
ChangeRecordVirtualRefInd ChangeRecordVirtualRefInd Virtual Reference
BillOfMaterial BillOfMaterial BOM
ChangeRecordRefObjectUUID ChangeRecordRefObjectUUID
ChangeRecordItemProcgStatus ChangeRecordItemProcgStatus Processing Status
_ChangeRecord _ChangeRecord

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_ChgRecdFuncLocBOM.
-- 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_ChgRecdFuncLocBOM AS
SELECT
  ChangeRecordReferenceUUID,
  ChangeRecord,
  FunctionalLocation,
  Plant,
  BillOfMaterialVariantUsage,
  BillOfMaterialVariant,
  ChangeRecordUUID,
  ChangeRecordReferenceType,
  ChangeRecordReferenceSubtype,
  ChangeRecordReference,
  ParentChangeRecordRefUUID,
  IsMainReference,
  BillOfMaterialCategory,
  ChangeNumber,
  CreatedByUser,
  CreationDateTime,
  LastChangedByUser,
  LastChangeDateTime,
  ChangeRecordItemRelevance,
  ChangeRecordVirtualRefInd,
  BillOfMaterial,
  ChangeRecordRefObjectUUID,
  ChangeRecordItemProcgStatus
FROM I_ChgRecdFuncLocBillOfMatTP_2
;