I_SlsOrdFlfmtInSupplyContact

DDL: I_SLSORDFLFMTINSUPPLYCONTACT SQL: ISOFINSUPCNTCT Type: view COMPOSITE

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)

SourceAliasJoin Type
I_MfgOrder I_MfgOrder from
I_PurchasingDocument I_PurchasingDocument union_all
I_PurchasingDocument I_PurchasingDocument union_all

Parameters (2)

NameTypeDefault
P_ManufacturingOrder manufacturingorder
P_PurchasingDocument ebeln

Annotations (10)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
;