DBA Data[Home] [Help]

PACKAGE: APPS.CN_RAM_ADJUSTMENTS_PKG

Source


1 PACKAGE CN_RAM_ADJUSTMENTS_PKG AUTHID CURRENT_USER AS
2 -- $Header: cnvrams.pls 120.3 2005/08/29 08:16:16 vensrini noship $
3 
4 -- Procedure Name
5 --   identify
6 -- Purpose
7 --   To identify the RAM adjustments
8 
9   PROCEDURE identify (
10 	x_start_period	cn_periods.period_id%TYPE,
11 	x_end_period	cn_periods.period_id%TYPE,
12 	debug_pipe	VARCHAR2 DEFAULT NULL,
13 	debug_level	NUMBER	 DEFAULT NULL,
14     x_org_id NUMBER );
15 
16 -- Procedure Name
17 --   negate
18 -- Purpose
19 --   To negate OIC compensation transactions in API/Header tables which
20 --   have been identified in the "identify process" of RAM adjustment collection.
21 --   The new adjusted compensation transactins will be re-collected in the
22 --   "re-collect process" later.
23 
24   PROCEDURE negate (
25 	debug_pipe	VARCHAR2 DEFAULT NULL,
26 	debug_level	NUMBER	 DEFAULT NULL,
27     x_org_id NUMBER );
28 
29 END cn_ram_adjustments_pkg;
30