DBA Data[Home] [Help]

APPS.AR_EXCHANGE_INTERFACE_PKG dependencies on AR_EXCHANGE_INTERFACE_PKG

Line 1: PACKAGE BODY ar_exchange_interface_pkg as

1: PACKAGE BODY ar_exchange_interface_pkg as
2: /*$Header: AREXINPB.pls 120.7 2005/07/19 12:58:10 naneja noship $ */
3:
4: custcount NUMBER := 0;
5: g_commit_level NUMBER := 100;

Line 778: ar_exchange_interface_pkg.record_error(

774: l_action_reqd_msg := g_error_msg_custintfact;
775:
776: rollback to A;
777:
778: ar_exchange_interface_pkg.record_error(
779: p_billing_activity_id => null,
780: p_billing_customer_id => null,
781: p_customer_name => null,
782: p_error_code => 'POM_BILL_CUST_INTF_ERR',

Line 809: print_debug(0,'ar_exchange_interface_pkg.customer_interface raised following exception: ');

805: on failed requests. Additionally we should insert failure
806: codes/messages into pom_billing_interface_errors.(tablename, pk_of_table,
807: error_code, error_msg, status) where status can be 'ERROR','CORRECTED'
808: */
809: print_debug(0,'ar_exchange_interface_pkg.customer_interface raised following exception: ');
810: l_error_code := 'AR_INTERFACE_PROGRAM_ERROR';
811: l_action_reqd_msg := g_error_msg_custintfact;
812:
813: print_debug(0,'SQLERRM: '||sqlerrm);

Line 820: ar_exchange_interface_pkg.record_error(

816:
817:
818: --EXECUTE IMMEDIATE l_set_oex_cust_err USING l_request_id;
819:
820: ar_exchange_interface_pkg.record_error(
821: p_billing_activity_id => null,
822: p_billing_customer_id => null,
823: p_customer_name => null,
824: p_error_code => l_error_code,

Line 1955: ar_exchange_interface_pkg.record_error(

1951: ';
1952: EXECUTE IMMEDIATE l_temp_sql
1953: USING l_request_id;
1954:
1955: ar_exchange_interface_pkg.record_error(
1956: p_billing_activity_id => null,
1957: p_billing_customer_id => null,
1958: p_customer_name => nvl(l_customer_name, p_customer_name),
1959: p_error_code => l_error_code,

Line 2008: print_debug(LEVEL0,'ar_exchange_interface_pkg.record_error + : ');

2004: FROM DUAL
2005: ';
2006:
2007: print_debug(LEVEL0,'-------- ERROR -------------------------- ');
2008: print_debug(LEVEL0,'ar_exchange_interface_pkg.record_error + : ');
2009: print_debug(LEVEL4,'p_billing_activity_id : '||to_char(p_billing_activity_id));
2010: print_debug(LEVEL4,'p_billing_customer_id : '||to_char(p_billing_customer_id));
2011: print_debug(LEVEL4,'p_customer_name : '||p_customer_name);
2012: print_debug(LEVEL4,'p_error_code : '||p_error_code);

Line 2036: print_debug(0,'ar_exchange_interface_pkg +');

2032: raise;
2033: END record_error;
2034:
2035: BEGIN
2036: print_debug(0,'ar_exchange_interface_pkg +');
2037: print_debug(0,'Package initialization section +');
2038:
2039: /* Pkg initialization section */
2040: g_osr_cust_prefix := 'EXCHANGE_CUST';

Line 2131: END ar_exchange_interface_pkg;

2127:
2128: EXCEPTION
2129: WHEN OTHERS THEN
2130: RAISE;
2131: END ar_exchange_interface_pkg;