Skip to main content

Posts

Inventory- Get All Reservations

Reservations is one of the critical business functionality in Inventory Management. Reservations provides a way to link the Supply Source to a demand source. In the current post, We are discussing on REST API’s provided by Oracle Fusion Inventory Management Cloud Service to access/create/update Reservations. Fusion Applications standard documentation can be accessed from the below URL. https://docs.oracle.com/en/cloud/saas/supply-chain-and-manufacturing/19d/fasrp/api-inventory-reservations.html Below are the various operations available for reservations. 1.   Get all Reservation 2.   Create Reservation 3.   Delete a Reservation 4.   Get a Reservation 5.   Update a Reservation     A.    Get All Reservations Resource Path: /fscmRestApi/resources/11.13.18.05/inventoryReservations Request URL: https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/ inventoryReservations Method: Get Prerequisites : Authentication user

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",         "ActiveLot":"Yes",         "OriginationDate":"2020-03-31T18:30:00+00:00" } Prerequisit

Steps in Invoking a REST API

Below steps are applicable for invoking all the REST API’s in Fusion. You can find more details on this process in the below link. https://docs.oracle.com/en/cloud/saas/supply-chain-management/20a/fasrp/Quick_Start.html   Construct the Request URL   Set the Authentication Prepare the Request Body  While step#3 will dependent on the REST API you are invoking, 1 and 2 remain same for all REST API calls. Construct the Request URL:   Request URL contains two paths     a.        Server     b.        Resource Path https://<server>/<resource-path> The server will be the URL of your Oracle Cloud service.   https://servername.fa.us2.oraclecloud.com   Resource Path is the value provided in the documentation as shown below.     /fscmRestApi/resources/11.13.18.05/itemsV2 Hence the Request URL will be   https://servername.fa.us2.oraclecloud.com/fscmRestApi /resources/11.13.18.05/itemsV2   2.   Set the Authentication In a REST API client, yo