DBA Data[Home] [Help]

APPS.AR_EXCHANGE_INTERFACE dependencies on AR_EXCHANGE_INTERFACE

Line 1: PACKAGE BODY ar_exchange_interface as

1: PACKAGE BODY ar_exchange_interface as
2: /*$Header: AREXINTB.pls 115.7 2002/11/15 02:33:15 anukumar ship $ */
3:
4: /* Private procedures */
5: PROCEDURE debug( p_indent IN NUMBER, p_text IN VARCHAR2 ) IS

Line 44: debug(LEVEL0,'ar_exchange_interface.ar_customer_interface +');

40: select nvl(generate_customer_number,'N')
41: from ar_system_parameters;
42: BEGIN
43:
44: debug(LEVEL0,'ar_exchange_interface.ar_customer_interface +');
45: debug(LEVEL0,'-----------------------------------------');
46: l_conc_request_id := fnd_global.conc_request_id;
47: debug(LEVEL0,'conc.request id = '||to_char(l_conc_request_id));
48:

Line 49: debug(LEVEL0,'Calling ar_exchange_interface_pkg.customer_interface + ');

45: debug(LEVEL0,'-----------------------------------------');
46: l_conc_request_id := fnd_global.conc_request_id;
47: debug(LEVEL0,'conc.request id = '||to_char(l_conc_request_id));
48:
49: debug(LEVEL0,'Calling ar_exchange_interface_pkg.customer_interface + ');
50: ar_exchange_interface_pkg.customer_interface
51: (null,
52: null,
53: l_conc_request_id,

Line 50: ar_exchange_interface_pkg.customer_interface

46: l_conc_request_id := fnd_global.conc_request_id;
47: debug(LEVEL0,'conc.request id = '||to_char(l_conc_request_id));
48:
49: debug(LEVEL0,'Calling ar_exchange_interface_pkg.customer_interface + ');
50: ar_exchange_interface_pkg.customer_interface
51: (null,
52: null,
53: l_conc_request_id,
54: l_error_code,

Line 103: debug(LEVEL0,'ar_exchange_interface.invoice_interface +');

99:
100: BEGIN
101:
102:
103: debug(LEVEL0,'ar_exchange_interface.invoice_interface +');
104: debug(LEVEL0,'-----------------------------------------');
105: l_conc_request_id := fnd_global.conc_request_id;
106: debug(LEVEL0,'conc.request id = '||to_char(l_conc_request_id));
107:

Line 108: debug(LEVEL0,'Calling ar_exchange_interface_pkg.invoice_interface() + ');

104: debug(LEVEL0,'-----------------------------------------');
105: l_conc_request_id := fnd_global.conc_request_id;
106: debug(LEVEL0,'conc.request id = '||to_char(l_conc_request_id));
107:
108: debug(LEVEL0,'Calling ar_exchange_interface_pkg.invoice_interface() + ');
109: ar_exchange_interface_pkg.invoice_interface
110: (p_cutoff_date,
111: p_customer_name,
112: l_conc_request_id,

Line 109: ar_exchange_interface_pkg.invoice_interface

105: l_conc_request_id := fnd_global.conc_request_id;
106: debug(LEVEL0,'conc.request id = '||to_char(l_conc_request_id));
107:
108: debug(LEVEL0,'Calling ar_exchange_interface_pkg.invoice_interface() + ');
109: ar_exchange_interface_pkg.invoice_interface
110: (p_cutoff_date,
111: p_customer_name,
112: l_conc_request_id,
113: l_error_code,

Line 123: END ar_exchange_interface;

119: WHEN OTHERS THEN
120: debug(LEVEL0,'Error from remote call: '||sqlcode||','||sqlerrm);
121: END ar_invoice_interface;
122:
123: END ar_exchange_interface;