DBA Data[Home] [Help]

PACKAGE: APPS.JAI_CMN_RG_OPM_PKG

Source


1 PACKAGE jai_cmn_rg_opm_pkg  AUTHID CURRENT_USER AS
2 /* $Header: jai_cmn_rg_opm.pls 120.2 2005/07/29 10:48:25 rpokkula ship $ */
3 /*-----------------------------------------------------------------------------------------------------
4 Change History
5 08-Jun-2005   This Object is Modified to refer to New DB Entity names in place of Old DB Entity Names,
6               as required for CASE COMPLAINCE. Version 116.1
7 08-July-2005  Brathod,
8               Issue:  Inventory Convergence Uptake
9               Solution:
10               -  Signature of procedure CREATE_RG23_ENTRY is modified.  p_orgn_code is removed and
11                  a new argument organization_id is introduced
12               -  Signature of procedure CREATE_RG_I_ENTRY is modified.  p_orgn_code and p_item_id are
13                  removed and introduced p_organization_id and p_inventory_item_id
14 
15 29-Jul-2005   Ramananda for bug#4523064, File Version 120.2
16               Removed the procedure calculate_pla_balances, as it is commented in the package body
17 --------------------------------------------------------------------------------------------------------*/
18 procedure create_rg23_entry
19 (
20 p_iss_recpt_mode          varchar2,
21 --p_orgn_code             varchar2,
22 p_location_id             NUMBER, --p_whse_code
23 p_ospheader               number,
24 p_vendor_id               number,
25 p_trans_date              date,
26 p_reg_type                Varchar2,
27 p_amount                  Number default 0,
28 p_post_rg23_i             Varchar2,
29 p_organization_id         Number --File.Sql.35 Cbabu  default 'Y'
30 );
31 
32 
33 procedure create_rg_i_entry
34 (
35 --p_orgn_code           varchar2,
36 p_location_id           NUMBER,--p_whse_code
37 p_ospheader           number,
38 p_trans_date          date,
39 --p_item_id             number,
40 p_qty                 number,
41 p_uom_code            varchar2,
42 p_created_by          number,
43 p_organization_id     number,
44 p_inventory_item_id   number
45 );
46 
47 END jai_cmn_rg_opm_pkg;