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
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"
}
Prerequisites:
- Authorization user needs to have privilege ‘INV_VIEW_LOT_SERIAL_LOV_WEB_SERVICE_PRIV’. This privilege is inherited by multiple seeded roles such as
a. Warehouse Operator
b. Inventory Management Common Web Service
c. Inventory Manager
2. Authorization user needs to have Data access
to Inventory Organization.Request Body:
Verification:
Comments
Post a Comment