DBA Data[Home] [Help]

PACKAGE: APPS.OTA_COST_TRANSFER_TO_GL_PKG

Source


1 package OTA_COST_TRANSFER_TO_GL_PKG AUTHID CURRENT_USER as
2 /* $Header: otactxgl.pkh 115.7 2002/01/03 13:37:21 pkm ship     $ */
3 --------------------------------------------------------------------------------
4 --
5 -- ----------------------------------------------------------------------------
6 -- |------------------------< Insert GL Lines >------------------------|
7 -- ----------------------------------------------------------------------------
8 --
9 -- PUBLIC
10 -- Description: Insert two GL Lines for Cost Transfer
11 --               for two cost centers
12 --
13 /* this package is called from concurrent manager by otatrans.sql */
14 --------------------------------------------------------------------------------
15 PROCEDURE otagls(p_user_id    in number,
16                  p_login_id   in number);
17 
18 FUNCTION otagli  (p_finance_header_id   in number,
19                   p_code_combination_id in varchar2,
20                   p_set_of_books_id     in number,
21                   p_debited_amount      in number,
22                   p_credited_amount     in number,
23                   p_currency_code       in varchar2,
24                   p_desc                in varchar2,
25                   p_cc_id               in number
26 ) RETURN VARCHAR2;
27 -- ----------------------------------------------------------------------------
28 -- |----------------< Update OTA Finance Tables Cost Transfers >-------|
29 -- ----------------------------------------------------------------------------
30 --
31 -- PUBLIC
32 --
33 -- Description : Used to update the values on the ota_finance_headers and
34 --               ota_finance_lines for cost transfers between cost centers
35 --------------------------------------------------------------------------------
36 -- Update OTA Finance Headers for Cost Transfer
37 --
38 FUNCTION upd_ota_header (p_finance_header_id in number,
39                          p_object_version_number in number)
40 RETURN VARCHAR2;
41 --
42 -- Update OTA Finance Lines for Cost Transfer
43 --
44 FUNCTION upd_ota_line (p_finance_header_id in number) RETURN VARCHAR2;
45 --
46 end OTA_COST_TRANSFER_TO_GL_PKG;