DBA Data[Home] [Help]

PACKAGE: APPS.AR_MOVEMENT_STAT_PKG

Source


1 PACKAGE ar_movement_stat_pkg AUTHID CURRENT_USER AS
2 /* $Header: armvsts.pls 115.1 99/07/17 00:56:29 porting ship $ */
3 
4 -- Public Declarations:
5 --     user_id               number
6 --     pseudo_movement_id    number
7 
8    user_id                   NUMBER;
9    pseudo_movement_id        NUMBER;
10 
11 -- Package
12 --    ar_movement_stat_pkg
13 
14 -- Purpose
15 --   This package defines all procedures that are called from
16 --   the receiving processor.
17 
18 -- History
19 --    MAY-10-95     Rudolf F. Reichenberger     Created
20 
21 
22 --   *******************************************************************
23   -- Procedure
24   -- upd_ar_invoices
25 
26   -- Purpose
27   --  This procedure is called from the autoinvoice program to
28   --  update MTL_MOVEMENT_STATISTICS table with invoice price
29   --  information.
30 
31   -- History
32   --     MAR-21-95     Rudolf F. Reichenberger     Created
33 
34   -- Arguments
35   -- p_customer_trx_id         number
36   -- p_batch_id                number
37 
38   -- Example
39   --   mtl_movement_stat_pkg.upd_ar_invoices ()
40 
41   -- Notes
42 
43       PROCEDURE upd_ar_invoices    (p_customer_trx_id      IN NUMBER,
44                                     p_batch_id             IN NUMBER);
45 
46 --   ************************************************************
47 
48 
49 END ar_movement_stat_pkg;