DBA Data[Home] [Help]

PACKAGE: APPS.JL_AR_AUTOINV_MASTER_PKG

Source


1 package JL_AR_AUTOINV_MASTER_PKG AUTHID CURRENT_USER as
2 /* $Header: jlarrams.pls 120.3.12010000.2 2008/12/15 18:44:03 vspuli ship $ */
3 
4 PROCEDURE submit_request (
5   errbuf                      OUT NOCOPY varchar2,
6   retcode                     OUT NOCOPY number,
7   p_num_of_instances          IN varchar2 ,
8   p_organization              in varchar2,
9   p_batch_source_id           IN ra_batch_sources.batch_source_id%TYPE,
10   p_batch_source_name         IN varchar2  ,
11   p_default_date              IN varchar2  ,
12   p_trans_flexfield           IN varchar2  ,
13   p_trans_type                IN ra_cust_trx_types.name%TYPE  ,
14   p_low_bill_to_cust_num      IN hz_cust_accounts.account_number%TYPE  ,
15   p_high_bill_to_cust_num     IN hz_cust_accounts.account_number%TYPE ,
16   p_low_bill_to_cust_name     IN hz_parties.party_name%TYPE ,
17   p_high_bill_to_cust_name    IN hz_parties.party_name%TYPE  ,
18   p_low_gl_date               IN VARCHAR2,
19   p_high_gl_date              IN VARCHAR2,
20   p_low_ship_date             IN VARCHAR2,
21   p_high_ship_date            IN VARCHAR2,
22   p_low_trans_number          IN ra_interface_lines.trx_number%TYPE,
23   p_high_trans_number         IN ra_interface_lines.trx_number%TYPE ,
24   p_low_sales_order_num       IN ra_interface_lines.sales_order%TYPE ,
25   p_high_sales_order_num      IN ra_interface_lines.sales_order%TYPE,
26   p_low_invoice_date          IN VARCHAR2,
27   p_high_invoice_date         IN VARCHAR2,
28   p_low_ship_to_cust_num      IN hz_cust_accounts.account_number%TYPE ,
29   p_high_ship_to_cust_num     IN hz_cust_accounts.account_number%TYPE ,
30   p_low_ship_to_cust_name     IN hz_parties.party_name%TYPE ,
31   p_high_ship_to_cust_name    IN hz_parties.party_name%TYPE,
32   p_base_due_date_on_trx_date IN fnd_lookups.meaning%TYPE ,
33   p_due_date_adj_days         IN number );
34 
35 END JL_AR_AUTOINV_MASTER_PKG;