DBA Data[Home] [Help]

PACKAGE: APPS.PO_ACCOUNTING_GRP

Source


1 PACKAGE PO_ACCOUNTING_GRP AUTHID CURRENT_USER AS
2 /* $Header: POXGACTS.pls 115.1 2003/08/01 00:42:10 tpoon noship $*/
3 
4 -------------------------------------------------------------------------------
5 --Start of Comments
6 --Name: build_offset_account
7 --Function:
8 --  Given the base account and the overlay account, this procedure builds a
9 --  new offset account by overlaying them in the appropriate way determined
10 --  by the Purchasing option "Automatic Offset Method".
11 --Notes:
12 --  For details, see the package body comments.
13 --End of Comments
14 -------------------------------------------------------------------------------
15 PROCEDURE build_offset_account (
16   p_api_version     IN NUMBER,
17   p_init_msg_list   IN VARCHAR2,
18   x_return_status   OUT NOCOPY VARCHAR2,
19   p_base_ccid       IN NUMBER,
20   p_overlay_ccid    IN NUMBER,
21   p_accounting_date IN DATE,
22   p_org_id          IN NUMBER,
23   x_result_ccid     OUT NOCOPY NUMBER
24 );
25 
26 END PO_ACCOUNTING_GRP;