P_MfgConfExternalUser
Order Confirmation Users
P_MfgConfExternalUser is a Composite CDS View that provides data about "Order Confirmation Users" in SAP S/4HANA. It reads from 1 data source (I_MfgOrderConfirmation) and exposes 4 fields with key fields ProductionOrderConfirmation, OperationConfirmationCount. It has 1 association to related views. Part of development package ODATA_MPE_MFGORDER.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MfgOrderConfirmation | I_MfgOrderConfirmation | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | P_UserFullName | _PersonName | _PersonName.UserID = $projection.EnteredByExternalUser |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProductionOrderConfirmation | MfgOrderConfirmationGroup | ||
| KEY | OperationConfirmationCount | MfgOrderConfirmation | ||
| EnteredByExternalUser | EnteredByExternalUser | |||
| PersonFullName | _PersonName | PersonFullName |
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #XL, dataClass: #MIXED}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #COMPOSITE
@VDM.private: true
define view entity P_MfgConfExternalUser as select from I_MfgOrderConfirmation
association [1..1] to P_UserFullName as _PersonName on _PersonName.UserID = $projection.EnteredByExternalUser
{
key MfgOrderConfirmationGroup as ProductionOrderConfirmation,
key MfgOrderConfirmation as OperationConfirmationCount,
EnteredByExternalUser,
_PersonName.PersonFullName
}
where
ManufacturingOrderCategory = '10';
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