I_EndItmMjrAssyProjSystRelshp

DDL: I_ENDITMMJRASSYPROJSYSTRELSHP SQL: IENDITMMAPSREL Type: view BASIC

BOM Proj Syst Relationshop for EI and MA

I_EndItmMjrAssyProjSystRelshp is a Basic CDS View that provides data about "BOM Proj Syst Relationshop for EI and MA" in SAP S/4HANA. It reads from 1 data source (mpe_bom_ps_rel) and exposes 30 fields with key field ShopFloorItem.

Data Sources (1)

SourceAliasJoin Type
mpe_bom_ps_rel mpe_bom_ps_rel from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IENDITMMAPSREL view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label BOM Proj Syst Relationshop for EI and MA view

Fields (30)

KeyFieldSource TableSource FieldDescription
KEY ShopFloorItem sfi_id Serial.Mat. ID
Material matnr Vehicle Model
Plant werks Receiving Plant
BillOfMaterial stlnr BOM
BillOfMaterialVariant stlal AlternativeBOM
BillOfMaterialVariantUsage stlan Usage
BillOfMaterialVersion bom_versn BOM Version
CreationDateTime crtn_time Time Stamp
ParameterEffectivityValue techs Tech st from
ManufacturingOrder aufnr SettlementOrder
ParentMajorAssembly parent_ma Parent MA
VersionSelection version_selection Version Selection
Project project_id Project UUID
ParentShopFloorItem parent_sfi_id Parent SFI ID
BOMExplosionDate explosion_date Explosion Date
ParentMaterial parent_matnr Parent Material
ParentBillOfMaterial Parent BOM Number
ParentBillOfMaterialVariant parent_stlal Parent Altern. BOM
ParentBillOfMaterialUsage parent_stlan Parent BOM Usage
ParentBillOfMaterialVersion parent_bom_versn Parent BOM Version
ParentBOMItemNodeNumber parent_stlkn Parent BOM Item Node
ParentBOMItmInhtdNodeNmbr parent_stvkn Parent Item Node
ParentRtgOrderOperationNumber parent_aufpl Parent Rtg No. Ops.
ParentOrderOperationInternalID parent_aplzl Parent Counter
ParentBOMItemInternalCounter parent_stpoz Parent Int. Counter
MajorAssemblyIsNetwork ismanetwork MA Network
MjrAssyProjectIsAssigned projassign Assignment
WBSElement WBS Internal ID
MjrAssyNoNetworkIsRequired isnonwreq No Network Required
MjrAssyBckgndProcgStatus bgprocstatus Backgr. Procg Status

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 I_EndItmMjrAssyProjSystRelshp.
-- 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: IENDITMMAPSREL

CREATE VIEW I_EndItmMjrAssyProjSystRelshp AS
SELECT
  sfi_id AS ShopFloorItem,
  matnr AS Material,
  werks AS Plant,
  stlnr AS BillOfMaterial,
  stlal AS BillOfMaterialVariant,
  stlan AS BillOfMaterialVariantUsage,
  bom_versn AS BillOfMaterialVersion,
  crtn_time AS CreationDateTime,
  techs AS ParameterEffectivityValue,
  aufnr AS ManufacturingOrder,
  parent_ma AS ParentMajorAssembly,
  version_selection AS VersionSelection,
  project_id AS Project,
  parent_sfi_id AS ParentShopFloorItem,
  explosion_date AS BOMExplosionDate,
  parent_matnr AS ParentMaterial,
  cast( parent_stlnr as cs_stlnr preserving type ) AS ParentBillOfMaterial,
  parent_stlal AS ParentBillOfMaterialVariant,
  parent_stlan AS ParentBillOfMaterialUsage,
  parent_bom_versn AS ParentBillOfMaterialVersion,
  parent_stlkn AS ParentBOMItemNodeNumber,
  parent_stvkn AS ParentBOMItmInhtdNodeNmbr,
  parent_aufpl AS ParentRtgOrderOperationNumber,
  parent_aplzl AS ParentOrderOperationInternalID,
  parent_stpoz AS ParentBOMItemInternalCounter,
  ismanetwork AS MajorAssemblyIsNetwork,
  projassign AS MjrAssyProjectIsAssigned,
  cast( wbselement as ps_posid_edit preserving type ) AS WBSElement,
  isnonwreq AS MjrAssyNoNetworkIsRequired,
  bgprocstatus AS MjrAssyBckgndProcgStatus
FROM mpe_bom_ps_rel
;