DBA Data[Home] [Help]

PACKAGE: APPS.JA_AU_CCID_PKG

Source


1 package JA_AU_CCID_PKG AUTHID CURRENT_USER as
2 /* $Header: jaaupccs.pls 115.0 2003/01/08 23:34:28 thwon ship $ */
3 
4 PROCEDURE JA_AU_AUTOACCOUNTING
5           (x_org_id             IN
6            mtl_material_transactions.organization_id%TYPE,
7            x_subinv             IN
8            mtl_material_transactions.subinventory_code%TYPE,
9            x_item_id            IN
10            mtl_material_transactions.inventory_item_id%TYPE,
11            l_transaction_id     IN
12            po_requisitions_interface.transaction_id%TYPE);
13 
14 
15 PROCEDURE JA_AU_GET_COA_SOB
16           (x_org_id             IN
17            org_organization_definitions.organization_id%TYPE,
18            x_chart_of_accts_id  OUT
19            org_organization_definitions.chart_of_accounts_id%TYPE,
20            x_set_of_books_id    OUT
21            org_organization_definitions.set_of_books_id%TYPE);
22 
23 
24 PROCEDURE JA_AU_GET_REPLN_EXP_ACCTS
25           (x_org_id             IN
26            org_organization_definitions.organization_id%TYPE,
27            x_subinv             IN
28            mtl_secondary_inventories.secondary_inventory_name%TYPE,
29            x_item_id            IN
30            mtl_system_items.inventory_item_id%TYPE,
31            x_subinv_ccid        IN OUT
32            mtl_secondary_inventories.expense_account%TYPE,
33            x_item_ccid          IN OUT
34            mtl_system_items.expense_account%TYPE);
35 
36 FUNCTION JA_AU_GET_SEGMENT_VALUE
37          (x_table_name          IN
38           JA_AU_ACCT_DEFAULT_SEGS.table_name%TYPE,
39           x_constant            IN
40           JA_AU_ACCT_DEFAULT_SEGS.constant%TYPE,
41           x_segment             IN
42           JA_AU_ACCT_DEFAULT_SEGS.segment%TYPE,
43           x_subinv_ccid         IN
44           mtl_secondary_inventories.expense_account%TYPE,
45           x_item_ccid           IN
46           mtl_system_items.expense_account%TYPE)
47 RETURN gl_code_combinations.segment1%TYPE;
48 
49 FUNCTION JA_AU_GET_VALUE
50          (x_ccid                IN
51           gl_code_combinations.code_combination_id%TYPE,
52           x_segment     IN
53           gl_code_combinations.segment1%TYPE)
54 RETURN gl_code_combinations.segment1%TYPE;
55 
56 PROCEDURE JA_AU_UPDATE_MTLTRXACCT
57           (x_transaction_id     IN
58            mtl_transaction_accounts.transaction_id%TYPE,
59            x_ccid       IN
60            gl_code_combinations.code_combination_id%TYPE);
61 
62 
63 
64 END JA_AU_CCID_PKG;