P_MfgOrderEWMSynchronousPostg

DDL: P_MFGORDEREWMSYNCHRONOUSPOSTG SQL: PMFGORDEWMSYNC Type: view BASIC Package: VDM_PP_SFC

Mfg Order EWM Synchronous Posting

P_MfgOrderEWMSynchronousPostg is a Basic CDS View that provides data about "Mfg Order EWM Synchronous Posting" in SAP S/4HANA. It reads from 2 data sources (caufv, tco43) and exposes 5 fields with key field ManufacturingOrder. Part of development package VDM_PP_SFC.

Data Sources (2)

SourceAliasJoin Type
caufv caufv from
tco43 tco43 inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PMFGORDEWMSYNC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
VDM.private true view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ManufacturingOrder caufv aufnr
ProductionSchedulingProfile caufv sfcpf
ProductionPlant caufv werks
MfgOrderEWMSynchronousPosting tco43 sync_gm_for_ewm
CompIsPickedEWMAsynchrounously tco43 sync_pick_for_ewm
@AbapCatalog.sqlViewName: 'PMFGORDEWMSYNC'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true 
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #L, dataClass: #MIXED}
@VDM.private: true
@VDM.viewType: #BASIC

define view P_MfgOrderEWMSynchronousPostg
  as select from caufv as caufv
    inner join   tco43 as tco43 on  tco43.co_prodprf = caufv.sfcpf
                                and tco43.werks      = caufv.werks
{
      // Key

  key caufv.aufnr as ManufacturingOrder,
  
      caufv.sfcpf as ProductionSchedulingProfile,
      caufv.werks as ProductionPlant,
      
      tco43.sync_gm_for_ewm   as MfgOrderEWMSynchronousPosting,
      tco43.sync_pick_for_ewm as CompIsPickedEWMAsynchrounously
};