P_MfgOrderEWMSynchronousPostg
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.
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 |
@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
};
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA