One can use the replenishment counting system to plan your inventories. This may be ideal for replenishing free stock items that you store on the production floor, or office supplies kept in departmental cabinets. Oracle Inventory provides an open interface for loading replenishment count data collected from some other system. In some situations, you may want to do your own planning and use Oracle Inventory to create your internal requisitions. As items are issued from a sub-inventory without formal issuing procedures, it is necessary to take inventory of non–tracked sub-inventories to record item usage and determine reorder necessity.
Business Scenario
In order to determine when and how much to replenish, periodical physical count of the items in non–tracked sub-inventories can be entered through the Replenishment Counts window, or via a batch load transaction such as a bar code reader. Oracle Inventory permits on–hand quantity as an additional replenishment information type for non–tracked sub-inventories. If an on–hand quantity is entered, Oracle Inventory uses min–max planning to determine whether an order should be placed. Oracle Inventory provides an external interface for loading replenishment count data collected electronically, such as by a bar code reader. Once you have populated the replenishment interface tables, you can run the Validate Replenishment Interface program to validate the counts and put the information into the appropriate tables.
Type of Interface: OPEN Interface
Technical Overview
MTL_REPLENISH_HEADERS, MTL_REPLENISH_LINES are the main tables. MTL_REPLENISH_HEADERS _INT, MTL_REPLENISH_LINES_INT are the Interface tables
The production tables are MTL_REPLENISH_HEADERS and MTL_REPLENISH_LINES. For each record in the MTL_REPLENISH_HEADERS there should be at least one record in MTL_REPLENISH_LINES. The corresponding interface tables are MTL_REPLENISH_HEADERS_INT and MTL_REPLENISH_LINES_INT.
One should be very careful about many things like the Count type (On-Hand Qty, Order Qty, Order Maximum) depend on the item such that On-Hand Qty is applicable to non-tracked items, Order Qty is applicable to Reorder Level planned items while Order Maximum is applicable to items that are Min-Max planned. The replenishment count is mandatory in the first two conditions while it is not needed in Min-Max Planning. With the On-hand Qty, count qty is the on-hand balance while with Order Qty it is the reorder qty.
Required fields for MTL_REPLENISH_HEADERS_INT are
ORGANIZATION_ID/ORGANIZATION_CODE, PROCESS_MODE, PROCESS_STATUS, REPLENISH_HEADER_ID, REPLENISH_COUNT_NAME, SUBINVENTORY_CODE,
PROCESS_MODE:
2 – Concurrent
3 – Background
The replenishment validator polling process will pick up interface replenishment counts marked for Background processing. The validator will pick up and process all replenishment counts with a process mode of Background each time it runs.
You use Concurrent processing mode if you want to launch a dedicated replenishment validator process to explicitly process a single replenishment count, identified as a parameter to the program, from the interface table.
PROCESS_STATUS
1 – Hold
2 – Pending
3 – Processing
4 – Error
5 – Completed
Required fields for MTL_REPLENISH_LINES_INT are INVENTORY_ITEM_ID, ORGANIZATION_ID, COUNT_TYPE_CODE, COUNT_QUANTITY, and COUNT_UOM_CODE
COUNT_TYPE_CODE
Enter the type of the replenishment count entry. The valid count types are:
1 – On-hand Quantity: Use On-hand Quantity to identify counts that are the result of stock-takes of sub-inventories in which you do not track on-hand quantities.
2 – Order Quantity: Use Order Quantity when you want to specify the quantity to be ordered. This count type may be used with either tracked or non-tracked sub-inventories.
3 – Order Maximum: Use Order Maximum when you want to place an order for the min-max maximum quantity specified for item in the sub-inventory specified. This count type may be used with either tracked or non-tracked sub-inventories.
Setting Up the Replenishment Interface
Access the Replenishment Interface through the Oracle Inventory menu (Counting/Replenishment Counts/Process Interface). Select the type of request by choosing Single Request. In the Request Name field, select Validate Replenishment Interface. In the Parameters window, select Concurrent or Background as the Processing Mode and select the Count Name for processing. Select Submit Request to begin processing. You can also use the Schedule button to specify resubmission parameters that will control how frequently the Replenishment Validator polls for records in the interface tables.
Validations Performed
The value of REPLENISH_HEADER_ID must be unique among existing replenishment counts
§ The value of REPLENISH_COUNT_NAME must be unique among existing count headers
§ The value of LAST_UPDATED_BY must be a valid user name
§ ORGANIZATION_ID must be a valid identifier of an organization
§ SUBINVENTORY_CODE must refer to an existing sub-inventory
§ DELIVERY_LOCATION_ID must be a valid identifier of a location associated with the organization generating the replenishment
§ There must be at least one line per header
§ The ORGANIZATION_ID at the header level must be the same as that at the line level
§ COUNT_TYPE_CODE must be either 1, 2, or 3 and must be consistent with whether the sub-inventory is tracked or non-tracked
§ The value of COUNT_QUANTITY must be consistent with COUNT_TYPE_CODE and must be greater than zero INVENTORY_ITEM_ID must refer to a transactable item in the organization specified
§ The item must exist in the sub-inventory and must be min-max planned in that sub-inventory
§ The COUNT_UOM_CODE must be valid and conversions to primary UOM must exist
§ Each line must correspond to a header
Error Messages: (Values for the ERROR_FLAG)
Possible values for the ERROR_FLAG column in the MTL_REPLENISH_HEADERS_INT table are:
1 – Non-unique replenishment header id
2 – Non-unique replenishment count name
3 – Invalid user name
4 – Invalid organization identifier
5 – Invalid subinventory
7 – Header with no corresponding replenishment lines
10 – Header failed because line failed
18 – Delivery location is not valid
Possible values for the ERROR_FLAG column in the MTL_REPLENISH_LINES_INT table are:
1 – No corresponding header id
3 – Invalid user name
8 – Invalid item identifier or item isn’t transactable
9 – Invalid unit of measure or no conversion to primary unit of measure exists
11 – No item specified in either identifier or segments
12 – Invalid count type
13 – On-hand count type used for tracked sub inventory
CREATE OR REPLACE PACKAGE A07_REPLENISHMENT_INT AUTHID CURRENT_USER AS
/******************************************************************************
NAME: A07_REPLENISH_INTERFACE
PURPOSE: Item Replenishment Interface.
PARAMETERS:
INPUT:
OUTPUT:
RETURNED VALUE:
CALLED BY:
CALLS:
EXAMPLE USE: NUMBER := A07_REPLENISH_INTERFACE.MyFuncName(Number);
A07_REPLENISH_INTERFACE.MyProcName(Number, Varchar2);
ASSUMPTIONS:+
LIMITATIONS:
ALGORITHM:
NOTES:
******************************************************************************/
— All the Global Variables to be used in this package
g_create_dt date := sysdate;
g_create_by number := 10005218;
g_update_dt date := sysdate;
g_update_by number := 10005218;
v_sqlcode number;
v_sqlerrm varchar2(255);
— All Global Variables specific to the package
— All the Functions used in this package
Function CHK_ORG_EXISTS (org_id mtl_parameters.organization_id%type) return boolean;
Function CHK_ITEM_EXISTS (item_id mtl_system_items_b.inventory_item_id%type,
v_org_id mtl_system_items_b.organization_id%type) return boolean;
Function CHK_ITEM_SUBINV (v_item_id number, v_subinv varchar2, v_org_id number) return boolean;
Function GET_ITEM_PLAN (v_org_id number, v_item_id number, v_subinv varchar2) return number;
Function GET_ITEM_UOM (v_org_id number, v_item_id number) return varchar2;
— All the Procedures used in this package
Procedure Validate_Organization;
Procedure Validate_Item;
Procedure Validate_Item_SubInv;
Procedure Validate_Plan_Method;
Procedure Validate_Uom;
Procedure Validate ;
Procedure Populate_Interface;
— Procedure Run (errcode out number, errbuf out varchar2);
END A07_REPLENISHMENT_INT;
/
CREATE OR REPLACE PACKAGE BODY A07_REPLENISHMENT_INT AS
Function CHK_ORG_EXISTS (org_id mtl_parameters.organization_id%type) return boolean
Is
cnt number;
Begin
Select count(*) into cnt
From hr_all_organization_units
where organization_id = org_id;
if cnt <> 0
then
return true;
Else
return false;
End if;
End;
Function CHK_ITEM_EXISTS (item_id mtl_system_items_b.inventory_item_id%type,
v_org_id mtl_system_items_b.organization_id%type) return boolean
Is
cnt number;
Begin
Select count(*) into cnt
From mtl_system_items_b
Where inventory_item_id = item_id
And organization_id = v_org_id;
if cnt <> 0
then
return true;
else
return false;
end if;
End;
Function CHK_ITEM_SUBINV (v_item_id number, v_subinv varchar2, v_org_id number) return boolean
Is
cnt number;
Begin
Select count(*) into cnt
From mtl_item_sub_inventories
Where inventory_item_id = v_item_id
and secondary_inventory = v_subinv
and organization_id = v_org_id;
if cnt <> 0
then
return true;
else
return false;
end if;
End;
Function GET_ITEM_PLAN (v_org_id number, v_item_id number, v_subinv varchar2) return number
Is
ipm number;
Begin
Select inventory_planning_code into ipm
From mtl_item_sub_inventories
Where inventory_item_id = v_item_id
And organization_id = v_org_id
And secondary_inventory = v_subinv;
Return ipm;
Exception
When NO_DATA_FOUND then
return –2;
When OTHERS then
return –1;
End;
Function GET_ITEM_UOM (v_org_id number, v_item_id number) return varchar2
is
uom varchar2(3);
Begin
Select primary_uom_code into uom
From mtl_system_items_b
Where organization_id = v_org_id
And inventory_item_id = v_item_id;
Return uom;
Exception
When NO_DATA_FOUND then
return NULL;
When OTHERS then
return NULL;
End;
Procedure Validate_Organization
As
Cursor c_org is Select distinct organization_id from A07_replenish_interface;
v_org c_org%rowtype;
Begin
Open c_org;
Loop
Fetch c_org into v_org;
Exit when c_org%NOTFOUND;
Begin
If chk_org_exists(v_org.organization_id)
then
null;
Else
Update A07_replenish_interface
Set error_flag = –1,
error_description = ‘Organization does not exist’
Where organization_id = v_org.organization_id;
End If;
Exception
When OTHERS then
v_sqlcode := sqlcode;
v_sqlerrm := sqlerrm;
Rollback;
update A07_replenish_interface
Set error_flag = v_sqlcode,
error_description = v_sqlerrm
where organization_id = v_org.organization_id;
End;
End Loop;
Close c_org;
Commit;
fnd_file.put_line(FND_FILE.OUTPUT,‘Validate Organization completed successfully’);
Exception
When OTHERS then
v_sqlcode := sqlcode;
v_sqlerrm := sqlerrm;
Rollback;
fnd_file.put_line(FND_FILE.LOG,‘In the process : Validate Organization’);
fnd_file.put_line(FND_FILE.LOG,‘Error Code is ‘ || v_sqlcode);
fnd_file.put_line(FND_FILE.LOG,‘Error Mesg is ‘ || v_sqlerrm);
End Validate_Organization;
Procedure Validate_Item
As
Cursor c_item is Select inventory_item_id, organization_id from A07_replenish_interface
Where error_flag is null;
v_item c_item%rowtype;
Begin
Open c_item;
Loop
Fetch c_item into v_item;
Exit when c_item%NOTFOUND;
Begin
If chk_item_exists(v_item.inventory_item_id, v_item.organization_id)
then
null;
else
Update A07_replenish_interface
Set error_flag = –2,
error_description = ‘Item does not exist’
Where organization_id = v_item.organization_id
And inventory_item_id = v_item.inventory_item_id;
End If;
Exception
When OTHERS then
v_sqlcode := sqlcode;
v_sqlerrm := sqlerrm;
Rollback;
update A07_replenish_interface
Set error_flag = v_sqlcode,
error_description = v_sqlerrm
Where organization_id = v_item.organization_id
And inventory_item_id = v_item.inventory_item_id;
End;
End Loop;
Close c_item;
Commit;
fnd_file.put_line(FND_FILE.OUTPUT,‘Validate Item completed successfully’);
Exception
When OTHERS then
v_sqlcode := sqlcode;
v_sqlerrm := sqlerrm;
Rollback;
fnd_file.put_line(FND_FILE.LOG,‘In the process : Validate Item’);
fnd_file.put_line(FND_FILE.LOG,‘Error Code is ‘ || v_sqlcode);
fnd_file.put_line(FND_FILE.LOG,‘Error Mesg is ‘ || v_sqlerrm);
End Validate_Item;
Procedure Validate_Item_SubInv
As
Cursor c_item is Select inventory_item_id, subinventory_code,organization_id
from A07_replenish_interface
Where error_flag is null;
v_item c_item%rowtype;
Begin
Open c_item;
Loop
Fetch c_item into v_item;
Exit when c_item%NOTFOUND;
Begin
If chk_item_subinv(v_item.inventory_item_id,v_item.subinventory_code,v_item.organization_id)
then
null;
else
Update A07_replenish_interface
Set error_flag = –2,
error_description = ‘Item does not exist in suninventory’
Where organization_id = v_item.organization_id
And inventory_item_id = v_item.inventory_item_id
And subinventory_code = v_item.subinventory_code;
End If;
Exception
When OTHERS then
v_sqlcode := sqlcode;
v_sqlerrm := sqlerrm;
Rollback;
update A07_replenish_interface
Set error_flag = v_sqlcode,
error_description = v_sqlerrm
Where organization_id = v_item.organization_id
And inventory_item_id = v_item.inventory_item_id
And subinventory_code = v_item.subinventory_code;
End;
End Loop;
Close c_item;
Commit;
fnd_file.put_line(FND_FILE.OUTPUT,‘Validate Item completed successfully’);
Exception
When OTHERS then
v_sqlcode := sqlcode;
v_sqlerrm := sqlerrm;
Rollback;
fnd_file.put_line(FND_FILE.LOG,‘In the process : Validate Item’);
fnd_file.put_line(FND_FILE.LOG,‘Error Code is ‘ || v_sqlcode);
fnd_file.put_line(FND_FILE.LOG,‘Error Mesg is ‘ || v_sqlerrm);
End Validate_Item_SubInv;
Procedure Validate_Plan_Method
As
Cursor c_plan is Select organization_id, inventory_item_id, subinventory_code, count_method
from A07_replenish_interface
Where error_flag is null;
v_plan c_plan%rowtype;
ipm number;
Begin
Open c_plan;
Loop
Fetch c_plan into v_plan;
Exit when c_plan%NOTFOUND;
ipm := get_item_plan(v_plan.organization_id, v_plan.inventory_item_id,v_plan.subinventory_code);
Begin
If ipm = 1
then
if v_plan.count_method != 2
then
Update A07_replenish_interface
Set error_flag = –3,
error_description = ‘Planning method and Counting Method mismatch’
Where organization_id = v_plan.organization_id
And inventory_item_id = v_plan.inventory_item_id
and subinventory_code = v_plan.subinventory_code;
end if;
Elsif ipm = 2 then
if v_plan.count_method != 3
then
Update A07_replenish_interface
Set error_flag = –3,
error_description = ‘Planning method and Counting Method mismatch’
Where organization_id = v_plan.organization_id
And inventory_item_id = v_plan.inventory_item_id
and subinventory_code = v_plan.subinventory_code;
end if;
Elsif ipm = 6 then
if v_plan.count_method != 1
then
Update A07_replenish_interface
Set error_flag = –3,
error_description = ‘Planning method and Counting Method mismatch’
Where organization_id = v_plan.organization_id
And inventory_item_id = v_plan.inventory_item_id
and subinventory_code = v_plan.subinventory_code;
end if;
Else
null;
End If;
Exception
When OTHERS then
v_sqlcode := sqlcode;
v_sqlerrm := sqlerrm;
Rollback;
update A07_replenish_interface
Set error_flag = v_sqlcode,
error_description = v_sqlerrm
Where organization_id = v_plan.organization_id
And inventory_item_id = v_plan.inventory_item_id
And subinventory_code = v_plan.subinventory_code;
End;
End Loop;
Close c_plan;
Commit;
fnd_file.put_line(FND_FILE.OUTPUT,‘Validate Plan Method completed successfully’);
Exception
When OTHERS then
v_sqlcode := sqlcode;
v_sqlerrm := sqlerrm;
Rollback;
fnd_file.put_line(FND_FILE.LOG,‘In the process : Validate Plan Method’);
fnd_file.put_line(FND_FILE.LOG,‘Error Code is ‘ || v_sqlcode);
fnd_file.put_line(FND_FILE.LOG,‘Error Mesg is ‘ || v_sqlerrm);
End Validate_Plan_Method;
Procedure Validate_UOM
As
Cursor c_uom is Select distinct inventory_item_id, organization_id
from A07_replenish_interface
Where error_flag is null;
v_plan c_uom%rowtype;
uom varchar2(3);
Begin
Open c_uom;
Loop
Fetch c_uom into v_plan;
Exit when c_uom%NOTFOUND;
uom := get_item_uom(v_plan.organization_id, v_plan.inventory_item_id);
Begin
If uom is NULL
then
Update A07_replenish_interface
Set error_flag = –4,
error_description = ‘UOM not found’
Where organization_id = v_plan.organization_id
And inventory_item_id = v_plan.inventory_item_id;
Else
Update A07_replenish_interface
Set UOM_CODE = uom
Where organization_id = v_plan.organization_id
And inventory_item_id = v_plan.inventory_item_id;
End If;
Exception
When OTHERS then
v_sqlcode := sqlcode;
v_sqlerrm := sqlerrm;
Rollback;
update A07_replenish_interface
Set error_flag = v_sqlcode,
error_description = v_sqlerrm
Where organization_id = v_plan.organization_id
And inventory_item_id = v_plan.inventory_item_id;
End;
End Loop;
Close c_uom;
Commit;
fnd_file.put_line(FND_FILE.OUTPUT,‘Validate Plan Method completed successfully’);
Exception
When OTHERS then
v_sqlcode := sqlcode;
v_sqlerrm := sqlerrm;
Rollback;
fnd_file.put_line(FND_FILE.LOG,‘In the process : Validate Plan Method’);
fnd_file.put_line(FND_FILE.LOG,‘Error Code is ‘ || v_sqlcode);
fnd_file.put_line(FND_FILE.LOG,‘Error Mesg is ‘ || v_sqlerrm);
End Validate_UOM;
Procedure Validate
As
Begin
Update A07_replenish_interface
Set error_flag = NULL, error_description = NULL;
— Update the organization_ids to the respective organization
Validate_organization;
— Check if the items exist for the given organization in MTL_SYSTEM_ITEMS_B
Validate_item;
— Check if the organization costing method and the item costing method are same.
Validate_Plan_Method;
— Check if the item is existing in the subinventory
Validate_Item_SubInv;
— To Check if the item cost already exists in the CST_ITEM_COSTS
Validate_UOM;
Update A07_replenish_interface
Set error_flag = 0, error_description = ‘Clean Data’
Where error_flag is null;
Commit;
fnd_file.put_line(FND_FILE.OUTPUT,‘Validate Interface completed successfully’);
Exception
When OTHERS then
v_sqlcode := sqlcode;
v_sqlerrm := sqlerrm;
Rollback;
fnd_file.put_line(FND_FILE.LOG,‘In the process : Validate Interface’);
fnd_file.put_line(FND_FILE.LOG,‘Error Code is ‘ || v_sqlcode);
fnd_file.put_line(FND_FILE.LOG,‘Error Mesg is ‘ || v_sqlerrm);
End Validate;
Procedure Populate_Interface
As
CURSOR C1 IS SELECT * FROM A07_REPLENISH_INTERFACE;
Cursor c_hdr is Select distinct organization_id, subinventory_code, count_date
from A07_replenish_interface
where error_flag = 0;
Cursor c_lines (org_id in number,subinv_code in varchar2) is
Select inventory_item_id, organization_id
from A07_replenish_interface
where error_flag = 0;
h_id number;
l_id number;
h_name varchar2(15);
V_HDR C_HDR%ROWTYPE;
Begin
Open c_hdr;
Loop <<OUTER>>
Fetch c_hdr into v_hdr;
Exit when c_hdr%NOTFOUND;
Select mtl_replenish_headers_s.nextval into h_id from dual;
h_name := ‘SRT’ || h_id ;
END LOOP;
FOR REC IN C1
LOOP
Insert into mtl_replenish_headers_int
( REPLENISHMENT_HEADER_ID,REPLENISHMENT_COUNT_NAME,COUNT_DATE, LAST_UPDATE_DATE,CREATION_DATE,
CREATED_BY ,LAST_UPDATED_BY,ORGANIZATION_ID,SUBINVENTORY_CODE, PROCESS_STATUS,PROCESS_MODE )
Values
(REC.REPLENISHMENT_HEADER_ID,REC.REPLENISHMENT_COUNT_NAME,REC.COUNT_DATE,REC.LAST_UPDATE_DATE,REC.CREATION_DATE,
REC.CREATED_BY,REC.LAST_UPDATED_BY,REC.ORGANIZATION_ID,REC.SUBINVENTORY_CODE,REC.PROCESS_STATUS,REC.PROCESS_MODE);
END LOOP;
END;
END A07_REPLENISHMENT_INT;
Latest Posts
- R12 – How to Handle NULL for :$FLEX$.VALUE_SET_NAME In Oracle ERPAugust 25, 2023 - 1:20 pm
- R12 – How to Delete Oracle AR TransactionsMarch 22, 2019 - 8:37 pm
- How to Define Custom Key Flexfield (KFF) in R12January 19, 2018 - 5:43 pm
- AutoLock Box Concepts In R12November 10, 2017 - 8:30 am
- R12 – java.sql.SQLException: Invalid column type in OAFSeptember 15, 2017 - 9:39 am
Recent Comments