DBA Data[Home] [Help]

PACKAGE: APPS.OKL_ARINTF_PUB

Source


1 PACKAGE OKL_ARINTF_PUB AUTHID CURRENT_USER AS
2 /* $Header: OKLPAINS.pls 120.4 2008/02/29 10:49:34 nikshah ship $ */
3 /*#
4  * API for sending billing records to AR
5  * @rep:scope internal
6  * @rep:product OKL
7  * @rep:displayname Receivables Invoice Transfer to AR
8  * @rep:category BUSINESS_ENTITY  OKL_COLLECTION
9  * @rep:lifecycle active
10  * @rep:compatibility S
11  */
12 subtype xsiv_rec_type is okl_ext_sell_invs_pub.xsiv_rec_type;
13 subtype xsiv_tbl_type is okl_ext_sell_invs_pub.xsiv_tbl_type;
14 
15 G_ExtHdrRec          OKL_EXT_SELL_INVS_V%ROWTYPE;
16 G_ExtLineRec         OKL_XTL_SELL_INVS_V%ROWTYPE;
17 G_ExtDistrRec        OKL_XTD_SELL_INVS_V%ROWTYPE;
18 
19 G_batch_source       varchar2(50) := 'OKL_CONTRACTS';
20 G_request_id         number       := FND_GLOBAL.CONC_REQUEST_ID;
21 G_user_id            number       := FND_global.user_id;
22 G_sysdate            date         := sysdate;
23 
24 --x_return_status      VARCHAR2(3);
25 --x_msg_count          NUMBER;
26 --x_msg_data           VARCHAR2(2000);
27 
28 --G_EXCEPTION_HALT_PROCESS    EXCEPTION;
29 /*#
30  * Loads AR Interface table
31  * @param p_api_version API version
32  * @param p_init_msg_list  Initialize message stack
33  * @param x_return_status Return status from the API
34  * @param x_msg_count Message count if error messages are encountered
35  * @param x_msg_data Error message data
36  * @param p_trx_date_from Transaction from date
37  * @param p_trx_date_to Error Transaction to date
38  * @param p_assigned_process Assigned process
39  * @rep:displayname Load AR Interface table
40  * @rep:lifecycle active
41  */
42 PROCEDURE Get_REC_FEEDER
43   ( p_api_version                  IN  NUMBER
44   , p_init_msg_list                IN  VARCHAR2 DEFAULT OKC_API.G_FALSE
45   , x_return_status                OUT NOCOPY VARCHAR2
46   , x_msg_count                    OUT NOCOPY NUMBER
47   , x_msg_data                     OUT NOCOPY VARCHAR2
48   , p_trx_date_from                IN  DATE DEFAULT NULL
49   , p_trx_date_to                  IN  DATE DEFAULT NULL
50   , p_assigned_process             IN  VARCHAR2
51   ) ;
52 
53 PROCEDURE Get_REC_FEEDER_CONC
54   ( errbuf             OUT NOCOPY VARCHAR2
55   , retcode            OUT NOCOPY NUMBER
56   , p_trx_date_from    IN  VARCHAR2
57   , p_trx_date_to      IN  VARCHAR2
58   , p_assigned_process IN  VARCHAR2
59   ) ;
60 
61 END OKL_ARIntf_PUB;