DBA Data[Home] [Help]

APPS.PA_DEDUCTIONS_PUB dependencies on PA_DEDUCTIONS

Line 1: PACKAGE PA_DEDUCTIONS_PUB AUTHID CURRENT_USER AS

1: PACKAGE PA_DEDUCTIONS_PUB AUTHID CURRENT_USER AS
2: -- /* $Header: PADCTNPS.pls 120.6 2010/12/01 00:11:28 snizam noship $ */
3: /*#
4: * This package contains the public APIs for creation of deduction request header and details.
5: * The name of the package is PA_DEDUCTIONS_PUB. API's Create_Deduction_Hdr and Create_Deduction_Txn

Line 5: * The name of the package is PA_DEDUCTIONS_PUB. API's Create_Deduction_Hdr and Create_Deduction_Txn

1: PACKAGE PA_DEDUCTIONS_PUB AUTHID CURRENT_USER AS
2: -- /* $Header: PADCTNPS.pls 120.6 2010/12/01 00:11:28 snizam noship $ */
3: /*#
4: * This package contains the public APIs for creation of deduction request header and details.
5: * The name of the package is PA_DEDUCTIONS_PUB. API's Create_Deduction_Hdr and Create_Deduction_Txn
6: * are to create the data into the tables PA_DEDUCTIONS_ALL and PA_DEDUCTION_TRANSACTIONS_ALL.
7: * @rep:scope public
8: * @rep:product PA
9: * @rep:lifecycle active

Line 6: * are to create the data into the tables PA_DEDUCTIONS_ALL and PA_DEDUCTION_TRANSACTIONS_ALL.

2: -- /* $Header: PADCTNPS.pls 120.6 2010/12/01 00:11:28 snizam noship $ */
3: /*#
4: * This package contains the public APIs for creation of deduction request header and details.
5: * The name of the package is PA_DEDUCTIONS_PUB. API's Create_Deduction_Hdr and Create_Deduction_Txn
6: * are to create the data into the tables PA_DEDUCTIONS_ALL and PA_DEDUCTION_TRANSACTIONS_ALL.
7: * @rep:scope public
8: * @rep:product PA
9: * @rep:lifecycle active
10: * @rep:displayname Deduction Request Creation

Line 17: g_pub_dctn_hdr_tbl PA_DEDUCTIONS.g_dctn_hdrtbl;

13: * @rep:category BUSINESS_ENTITY PA_PAYABLE_INV_COST
14: * @rep:doccd 120pjapi.pdf See the Oracle Projects API's, Client Extensions, and Open Interfaces Reference
15: */
16:
17: g_pub_dctn_hdr_tbl PA_DEDUCTIONS.g_dctn_hdrtbl;
18: g_pub_dctn_txn_tbl PA_DEDUCTIONS.g_dctn_txntbl;
19:
20: g_validate_txn VARCHAR2(1) := 'N';
21: g_user_id NUMBER(15) := FND_GLOBAL.USER_ID;

Line 18: g_pub_dctn_txn_tbl PA_DEDUCTIONS.g_dctn_txntbl;

14: * @rep:doccd 120pjapi.pdf See the Oracle Projects API's, Client Extensions, and Open Interfaces Reference
15: */
16:
17: g_pub_dctn_hdr_tbl PA_DEDUCTIONS.g_dctn_hdrtbl;
18: g_pub_dctn_txn_tbl PA_DEDUCTIONS.g_dctn_txntbl;
19:
20: g_validate_txn VARCHAR2(1) := 'N';
21: g_user_id NUMBER(15) := FND_GLOBAL.USER_ID;
22: g_resp_id NUMBER := FND_GLOBAL.resp_id;

Line 155: END PA_DEDUCTIONS_PUB;

151: --,p_amount IN NUMBER :=PA_INTERFACE_UTILS_PUB.G_PA_MISS_NUM -- bug9052223
152: ,p_description IN VARCHAR2 := PA_INTERFACE_UTILS_PUB.G_PA_MISS_CHAR
153: );
154:
155: END PA_DEDUCTIONS_PUB;