DBA Data[Home] [Help]

APPS.AR_INVOICE_API_PUB dependencies on AR_INVOICE_DEFAULT_PVT

Line 11: p_trx_system_param_rec IN AR_INVOICE_DEFAULT_PVT.trx_system_parameters_rec_type,

7: g_single_invoice boolean := FALSE;
8:
9: PROCEDURE populate_header (
10: p_trx_header_tbl IN trx_header_tbl_type,
11: p_trx_system_param_rec IN AR_INVOICE_DEFAULT_PVT.trx_system_parameters_rec_type,
12: p_trx_profile_rec IN AR_INVOICE_DEFAULT_PVT.trx_profile_rec_type,
13: p_batch_source_rec IN batch_source_rec_type,
14: x_errmsg OUT NOCOPY VARCHAR2,
15: x_return_status OUT NOCOPY VARCHAR2) IS

Line 12: p_trx_profile_rec IN AR_INVOICE_DEFAULT_PVT.trx_profile_rec_type,

8:
9: PROCEDURE populate_header (
10: p_trx_header_tbl IN trx_header_tbl_type,
11: p_trx_system_param_rec IN AR_INVOICE_DEFAULT_PVT.trx_system_parameters_rec_type,
12: p_trx_profile_rec IN AR_INVOICE_DEFAULT_PVT.trx_profile_rec_type,
13: p_batch_source_rec IN batch_source_rec_type,
14: x_errmsg OUT NOCOPY VARCHAR2,
15: x_return_status OUT NOCOPY VARCHAR2) IS
16:

Line 62: p_trx_system_param_rec ar_invoice_default_pvt.trx_system_parameters_rec_type,

58: END;
59:
60: PROCEDURE populate_lines (
61: p_trx_lines_tbl trx_line_tbl_type,
62: p_trx_system_param_rec ar_invoice_default_pvt.trx_system_parameters_rec_type,
63: x_errmsg OUT NOCOPY VARCHAR2,
64: x_return_status OUT NOCOPY VARCHAR2) IS
65:
66: l_customer_trx_line_id NUMBER;

Line 152: ar_invoice_default_pvt.trx_system_parameters_rec_type,

148: PROCEDURE populate_distributions (
149: p_trx_dist_tbl IN trx_dist_tbl_type,
150: p_batch_source_rec IN batch_source_rec_type,
151: p_trx_system_param_rec IN
152: ar_invoice_default_pvt.trx_system_parameters_rec_type,
153: x_errmsg OUT NOCOPY VARCHAR2,
154: x_return_status OUT NOCOPY VARCHAR2 ) IS
155:
156: -- To work around an issue in 8i.

Line 222: p_trx_system_param_rec IN AR_INVOICE_DEFAULT_PVT.trx_system_parameters_rec_type,

218:
219:
220: PROCEDURE populate_salescredits (
221: p_trx_salescredits_tbl IN trx_salescredits_tbl_type,
222: p_trx_system_param_rec IN AR_INVOICE_DEFAULT_PVT.trx_system_parameters_rec_type,
223: x_errmsg OUT NOCOPY VARCHAR2,
224: x_return_status OUT NOCOPY VARCHAR2 ) IS
225:
226: BEGIN

Line 274: p_trx_system_param_rec ar_invoice_default_pvt.trx_system_parameters_rec_type,

270: -- ORASHID 20-September-2004
271:
272: PROCEDURE populate_contingencies (
273: p_trx_contingencies_tbl trx_contingencies_tbl_type,
274: p_trx_system_param_rec ar_invoice_default_pvt.trx_system_parameters_rec_type,
275: x_errmsg OUT NOCOPY VARCHAR2,
276: x_return_status OUT NOCOPY VARCHAR2 ) IS
277:
278: BEGIN

Line 360: l_trx_system_parameters_rec AR_INVOICE_DEFAULT_PVT.trx_system_parameters_rec_type;

356:
357: l_api_name CONSTANT VARCHAR2(30) := 'CREATE_INVOICE';
358: l_api_version CONSTANT NUMBER := 1.0;
359:
360: l_trx_system_parameters_rec AR_INVOICE_DEFAULT_PVT.trx_system_parameters_rec_type;
361: l_trx_profile_rec AR_INVOICE_DEFAULT_PVT.trx_profile_rec_type;
362: l_trx_date ra_customer_trx.trx_date%type;
363: x_errmsg VARCHAR2(2000);
364: l_batch_id NUMBER;

Line 361: l_trx_profile_rec AR_INVOICE_DEFAULT_PVT.trx_profile_rec_type;

357: l_api_name CONSTANT VARCHAR2(30) := 'CREATE_INVOICE';
358: l_api_version CONSTANT NUMBER := 1.0;
359:
360: l_trx_system_parameters_rec AR_INVOICE_DEFAULT_PVT.trx_system_parameters_rec_type;
361: l_trx_profile_rec AR_INVOICE_DEFAULT_PVT.trx_profile_rec_type;
362: l_trx_date ra_customer_trx.trx_date%type;
363: x_errmsg VARCHAR2(2000);
364: l_batch_id NUMBER;
365: --anuj

Line 453: ar_invoice_default_pvt.get_system_parameters(

449: the transactions are processed by org. So we
450: have to init each time the org changes */
451: IF g_one_time_init_org <> l_org_id
452: THEN
453: ar_invoice_default_pvt.get_system_parameters(
454: p_trx_system_parameters_rec => l_trx_system_parameters_rec,
455: x_errmsg => x_errmsg,
456: x_return_status => x_return_status);
457:

Line 466: ar_invoice_default_pvt.Get_profile_values(

462: return;
463: END IF;
464:
465: -- Get the default values from profile options;
466: ar_invoice_default_pvt.Get_profile_values(
467: p_trx_profile_rec => l_trx_profile_rec,
468: x_errmsg => x_errmsg,
469: x_return_status => x_return_status) ;
470: