Skip to main content

Outside Processing-1

Introduction:

In manufacturing an assembly, organizations could run into scenarios where one or more operations are performed by an external supplier. Though these operations could vary by industry some examples are Powder Coating, Color blasting etc. In an outside processing scenario, a Semi-Finished assembly is sent to the supplier.

Below are the high-level steps in Outside Processing Flow:

  • Create an Outside Processing Service Item
  • Create a Supplier Operation
  • Define a Work Definition Including Supplier Operation
  • Review Plant Parameters
  • Create a Work Order and Release
  • Review the Supply Orchestration
  • Receive the Purchase Order
In this first we will review the steps up to reviewing plant parameters.

Create an Outside Processing Service Item

Outside Processing Service Item is used in the Purchase Order line and systematically received from the supplier. This is a non-Inventory, Service item, used for tracking the Supplier services.

Product Hub provides a seeded item template- Outside Processing Item can be used to create these items.



Create a Supplier Operation: 

Operation Type needs to be selected as Supplier for these operations. In Supplier Operation Details, Outside Process Item created in the earlier step is associated along with the Supplier and Supplier Site.



Define a Work Definition with Supplier Operation

In the below example, outside processing operation is preceded by an in-house operation.





Review Plant Parameters

Purchase Requisition trigger for an Outside Processing Item is based on the value setup at Plant Parameters. In Work Execution Tab in Plant Parameters, the parameter Purchase Requisition Trigger has two possible values – Work Order Release and Prior Operation Completion.

In case of multiple Outside Processing Operations, Requisition is triggered for all the operations at the same time if plant parameter is set to Work Order Release. If parameter is set to Prior Operation Completion, Requisition is triggered after the prior operation is completed.




Comments

Popular posts from this blog

How to Create Items using REST API in Oracle Fusion

 Fusion Applications provide multiple ways to create Items such as Using FBDI Process(File Based Data Import) Using REST API Using SOAP WebService In this post, we will see the basic data elements required to create Items using REST API.  You can find Oracle Standard Documentation at the below URL https://docs.oracle.com/en/cloud/saas/supply-chain-management/20a/fasrp/op-fscmrestapi-resources-11.13.18.05-itemsv2-post.html End Point:   fscmRestApi/resources/11.13.18.05/itemsV2 Method: Post Steps in Invoking a REST API: Construct the Request URL   Set the Authentication Prepare the Request Body Submit the request       Construct the Request URL:  There are two parts in a Request URL.     a.        Server       b.        Resource Path   https://<server>/<resource-path> The server will...

How to Import Items using FBDI

Creating Items using FBDI There are multiple steps involved in creating the items using FBDI. Few of the initial steps are common for all the FBDI processes. Download the FBDI sheet that matches to your environment.    Below is the location for 20A Item Import FBDI.    https://docs.oracle.com/en/cloud/saas/supply-chain-management/20a/oefsc/product-master-data-management.html#itemimport-3041  2. There are multiple tabs in ItemImportTemplate.xlsm, for the current post, Lets focus on the first tab i.e. EGP_SYSTEM_ITEMS_INTERFACE  3. Fill the data as per your business need. Attached is a template that worked in my internal instance. 4. Once the data is entered, Switch to Instructions and CSV Generation. Click on ‘Generate CSV File’ 5.        egpitemsimport.zip file will be created   6.        Select Tools à Scheduled Processes , Click on Schedule ...

Creating Item Lots Using REST API in Oracle Fusion

Creating Item Lots Using REST API in Oracle Fusion   Oracle Fusion Inventory Management provides multiple REST API services to create the transactions and to fetch the data from Inventory Management.    Below are the steps involved in creating an Item Lot using REST API.     Construct the Request URL   Set the Authentication Prepare the Request Body For more information on Step#1 and 2, You may review my earlier post https://xplorefusion.blogspot.com/2020/03/prerequisites-in-invoking-rest-api.html   Prepare the Request Body: Elements in the request body will depend on the business requirement. Below is a simple example to create an Item Lot.   {         "OrganizationId":"300000043518896",         "InventoryItemId": 300000045573119,         "LotNumber": "SF20181208",         "Ac...