I_SlsOrdFlfmtInSupplyContact
SOFM Sales Order Fulfillment In Supply Contact
I_SlsOrdFlfmtInSupplyContact is a Composite CDS View that provides data about "SOFM Sales Order Fulfillment In Supply Contact" in SAP S/4HANA. It reads from 3 data sources (I_MfgOrder, I_PurchasingDocument, I_PurchasingDocument) and exposes 47 fields with key fields ManufacturingOrder, PurchasingDocument, PurchasingDocument, PurchasingDocument.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| I_MfgOrder | I_MfgOrder | from |
| I_PurchasingDocument | I_PurchasingDocument | union_all |
| I_PurchasingDocument | I_PurchasingDocument | union_all |
Parameters (2)
| Name | Type | Default |
|---|---|---|
| P_ManufacturingOrder | manufacturingorder | |
| P_PurchasingDocument | ebeln |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| EndUserText.label | SOFM Sales Order Fulfillment In Supply Contact | view | |
| VDM.viewType | #COMPOSITE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.sqlViewName | ISOFINSUPCNTCT | view |
Fields (47)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ManufacturingOrder | ManufacturingOrder | Order | |
| KEY | PurchasingDocument | Purchasing Document | ||
| ManufacturingOrderCategory | ManufacturingOrderCategory | |||
| ManufacturingOrderType | ManufacturingOrderType | |||
| PurchasingDocumentType | RFQ Type | |||
| ProductionPlant | ProductionPlant | Prod plnt | ||
| PurchasingOrganization | Purchasing Organization | |||
| PurchasingGroup | Purchasing Group | |||
| ContactIsInternal | ||||
| ContactIsExternal | ||||
| ContactPersonFunction | ||||
| ContactPersonName | _MRPController | MRPControllerName | Supplier Name | |
| PhoneNumber | _MRPController | MRPControllerPhoneNumber | Tel.No.Purch.Gp | |
| PhoneNumberExtension | ||||
| InternationalPhoneNumber | ||||
| MobilePhoneNumber | ||||
| InternationalMobilePhoneNumber | ||||
| KEY | PurchasingDocument | PurchasingDocument | Purchasing Document | |
| ManufacturingOrderCategory | ||||
| ManufacturingOrderType | ||||
| PurchasingDocumentType | PurchasingDocumentType | RFQ Type | ||
| ProductionPlant | Prod plnt | |||
| PurchasingOrganization | PurchasingOrganization | Purchasing Organization | ||
| PurchasingGroup | PurchasingGroup | Purchasing Group | ||
| ContactIsInternal | ||||
| ContactIsExternal | ||||
| ContactPersonFunction | ||||
| ContactPersonName | _PurchasingGroup | PurchasingGroupName | Supplier Name | |
| PhoneNumber | _PurchasingGroup | PurchasingGroupPhoneNumber | Tel.No.Purch.Gp | |
| PhoneNumberExtension | ||||
| InternationalPhoneNumber | ||||
| MobilePhoneNumber | ||||
| InternationalMobilePhoneNumber | ||||
| KEY | PurchasingDocument | PurchasingDocument | Purchasing Document | |
| ManufacturingOrderCategory | ||||
| ManufacturingOrderType | ||||
| PurchasingDocumentType | PurchasingDocumentType | RFQ Type | ||
| ProductionPlant | Prod plnt | |||
| PurchasingOrganization | PurchasingOrganization | Purchasing Organization | ||
| PurchasingGroup | PurchasingGroup | Purchasing Group | ||
| ContactIsInternal | ||||
| ContactIsExternal | ||||
| ContactPersonFunction | ||||
| ContactPersonName | _Supplier | SupplierName | Supplier Name | |
| PhoneNumberasPhoneNumber | ||||
| PhoneNumberasMobilePhoneNumber | ||||
| EmailAddressasEmailAddress |
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_SlsOrdFlfmtInSupplyContact.
-- 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: ISOFINSUPCNTCT
-- Parameters: P_ManufacturingOrder : manufacturingorder, P_PurchasingDocument : ebeln
CREATE VIEW I_SlsOrdFlfmtInSupplyContact AS
SELECT
ManufacturingOrder,
cast('' as ebeln) AS PurchasingDocument,
ManufacturingOrderCategory,
ManufacturingOrderType,
cast('' as esart) AS PurchasingDocumentType,
ProductionPlant,
cast('' as ekorg) AS PurchasingOrganization,
cast('' as ekgrp) AS PurchasingGroup,
cast('X' as internal_contact) AS ContactIsInternal,
cast('' as external_contact) AS ContactIsExternal,
cast('M1' as bu_pafkt) AS ContactPersonFunction,
_MRPController.MRPControllerName AS ContactPersonName,
_MRPController.MRPControllerPhoneNumber AS PhoneNumber,
cast('' as ad_tlxtns) AS PhoneNumberExtension,
cast('' as ad_telnrlg) AS InternationalPhoneNumber,
cast('' as ad_tlnmbr) AS MobilePhoneNumber,
cast('' as ad_telnrlg) AS InternationalMobilePhoneNumber
FROM I_MfgOrder
-- UNION ALL with additional select branch(es): I_PurchasingDocument
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- 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
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA