DBA Data[Home] [Help]

APPS.AR_LATE_CHARGE_PKG dependencies on AR_LATE_CHARGE_PKG

Line 1: PACKAGE BODY ar_late_charge_pkg AS

1: PACKAGE BODY ar_late_charge_pkg AS
2: /* $Header: ARLCDOCB.pls 120.25.12020000.3 2012/11/24 17:17:58 naneja ship $ */
3:
4: g_bulk_fetch_rows NUMBER := 10000;
5: g_func_curr VARCHAR2(15);

Line 810: ar_late_charge_pkg.g_invoice_api_called_from_lc := 'Y';

806: x_return_status := FND_API.G_RET_STS_SUCCESS;
807: --
808: -- Execution of the invoice api
809: --
810: ar_late_charge_pkg.g_invoice_api_called_from_lc := 'Y';
811: AR_INVOICE_API_PUB.create_invoice(
812: p_api_version => 1.0,
813: x_return_status => x_return_status,
814: x_msg_count => x_msg_count,

Line 821: ar_late_charge_pkg.g_invoice_api_called_from_lc := 'N';

817: p_trx_header_tbl => iv_trx_header_tbl,
818: p_trx_lines_tbl => iv_trx_lines_tbl,
819: p_trx_dist_tbl => iv_trx_dist_tbl,
820: p_trx_salescredits_tbl => iv_trx_salescredits_tbl);
821: ar_late_charge_pkg.g_invoice_api_called_from_lc := 'N';
822:
823: IF PG_DEBUG = 'Y' THEN
824: INSERT_HDR;
825:

Line 1018: ar_late_charge_pkg.g_invoice_api_called_from_lc := 'N';

1014: WHEN FND_API.G_EXC_ERROR THEN
1015: --
1016: -- Error from invoice api directly out
1017: --
1018: ar_late_charge_pkg.g_invoice_api_called_from_lc := 'N';
1019:
1020: FND_MSG_PUB.Count_And_Get( p_encoded => FND_API.G_FALSE,
1021: p_count => x_msg_count,
1022: p_data => x_msg_data );

Line 1028: ar_late_charge_pkg.g_invoice_api_called_from_lc := 'N';

1024: outandlog( message => x_msg_data);
1025:
1026: WHEN OTHERS THEN
1027:
1028: ar_late_charge_pkg.g_invoice_api_called_from_lc := 'N';
1029:
1030: outandlog( message => 'EXCEPTION OTHERS in call_invoice_api:'||SQLERRM);
1031: x_return_status := fnd_api.g_ret_sts_unexp_error;
1032: fnd_message.set_name('AR', 'HZ_API_OTHERS_EXCEP');