DBA Data[Home] [Help]

APPS.AR_RECEIPT_API_PUB dependencies on AR_RECEIPT_LIB_PVT

Line 34: IF ar_receipt_lib_pvt.pg_profile_doc_seq = FND_API.G_MISS_CHAR THEN

30: --the procedure initialize_profile_globals would not do any initialization in that
31: --case
32: PROCEDURE initialize_profile_globals IS
33: BEGIN
34: IF ar_receipt_lib_pvt.pg_profile_doc_seq = FND_API.G_MISS_CHAR THEN
35: ar_receipt_lib_pvt.pg_profile_doc_seq
36: := fnd_profile.value('UNIQUE:SEQ_NUMBERS');
37: END IF;
38: -- pofile option AR_ENABLE_CROSS_CURRENCY has been obsolited

Line 35: ar_receipt_lib_pvt.pg_profile_doc_seq

31: --case
32: PROCEDURE initialize_profile_globals IS
33: BEGIN
34: IF ar_receipt_lib_pvt.pg_profile_doc_seq = FND_API.G_MISS_CHAR THEN
35: ar_receipt_lib_pvt.pg_profile_doc_seq
36: := fnd_profile.value('UNIQUE:SEQ_NUMBERS');
37: END IF;
38: -- pofile option AR_ENABLE_CROSS_CURRENCY has been obsolited
39: -- it will now always be 'Y'

Line 40: -- IF ar_receipt_lib_pvt.pg_profile_enable_cc = FND_API.G_MISS_CHAR THEN

36: := fnd_profile.value('UNIQUE:SEQ_NUMBERS');
37: END IF;
38: -- pofile option AR_ENABLE_CROSS_CURRENCY has been obsolited
39: -- it will now always be 'Y'
40: -- IF ar_receipt_lib_pvt.pg_profile_enable_cc = FND_API.G_MISS_CHAR THEN
41: ar_receipt_lib_pvt.pg_profile_enable_cc:='Y';
42: -- := fnd_profile.value('AR_ENABLE_CROSS_CURRENCY');
43: -- END IF;
44: IF ar_receipt_lib_pvt.pg_profile_appln_gl_date_def = FND_API.G_MISS_CHAR THEN

Line 41: ar_receipt_lib_pvt.pg_profile_enable_cc:='Y';

37: END IF;
38: -- pofile option AR_ENABLE_CROSS_CURRENCY has been obsolited
39: -- it will now always be 'Y'
40: -- IF ar_receipt_lib_pvt.pg_profile_enable_cc = FND_API.G_MISS_CHAR THEN
41: ar_receipt_lib_pvt.pg_profile_enable_cc:='Y';
42: -- := fnd_profile.value('AR_ENABLE_CROSS_CURRENCY');
43: -- END IF;
44: IF ar_receipt_lib_pvt.pg_profile_appln_gl_date_def = FND_API.G_MISS_CHAR THEN
45: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def

Line 44: IF ar_receipt_lib_pvt.pg_profile_appln_gl_date_def = FND_API.G_MISS_CHAR THEN

40: -- IF ar_receipt_lib_pvt.pg_profile_enable_cc = FND_API.G_MISS_CHAR THEN
41: ar_receipt_lib_pvt.pg_profile_enable_cc:='Y';
42: -- := fnd_profile.value('AR_ENABLE_CROSS_CURRENCY');
43: -- END IF;
44: IF ar_receipt_lib_pvt.pg_profile_appln_gl_date_def = FND_API.G_MISS_CHAR THEN
45: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def
46: := fnd_profile.value('AR_APPLICATION_GL_DATE_DEFAULT');
47: END IF;
48: ---Profile option: AR: Cash - default Amount Applied has been

Line 45: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def

41: ar_receipt_lib_pvt.pg_profile_enable_cc:='Y';
42: -- := fnd_profile.value('AR_ENABLE_CROSS_CURRENCY');
43: -- END IF;
44: IF ar_receipt_lib_pvt.pg_profile_appln_gl_date_def = FND_API.G_MISS_CHAR THEN
45: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def
46: := fnd_profile.value('AR_APPLICATION_GL_DATE_DEFAULT');
47: END IF;
48: ---Profile option: AR: Cash - default Amount Applied has been
49: -- obsoleted

Line 50: IF ar_receipt_lib_pvt.pg_profile_amt_applied_def = FND_API.G_MISS_CHAR THEN

46: := fnd_profile.value('AR_APPLICATION_GL_DATE_DEFAULT');
47: END IF;
48: ---Profile option: AR: Cash - default Amount Applied has been
49: -- obsoleted
50: IF ar_receipt_lib_pvt.pg_profile_amt_applied_def = FND_API.G_MISS_CHAR THEN
51: ar_receipt_lib_pvt.pg_profile_amt_applied_def :='INV';
52: END IF;
53: IF ar_receipt_lib_pvt.pg_profile_cc_rate_type = FND_API.G_MISS_CHAR THEN
54: ar_receipt_lib_pvt.pg_profile_cc_rate_type

Line 51: ar_receipt_lib_pvt.pg_profile_amt_applied_def :='INV';

47: END IF;
48: ---Profile option: AR: Cash - default Amount Applied has been
49: -- obsoleted
50: IF ar_receipt_lib_pvt.pg_profile_amt_applied_def = FND_API.G_MISS_CHAR THEN
51: ar_receipt_lib_pvt.pg_profile_amt_applied_def :='INV';
52: END IF;
53: IF ar_receipt_lib_pvt.pg_profile_cc_rate_type = FND_API.G_MISS_CHAR THEN
54: ar_receipt_lib_pvt.pg_profile_cc_rate_type
55: := ar_setup.value('AR_CROSS_CURRENCY_RATE_TYPE',null);

Line 53: IF ar_receipt_lib_pvt.pg_profile_cc_rate_type = FND_API.G_MISS_CHAR THEN

49: -- obsoleted
50: IF ar_receipt_lib_pvt.pg_profile_amt_applied_def = FND_API.G_MISS_CHAR THEN
51: ar_receipt_lib_pvt.pg_profile_amt_applied_def :='INV';
52: END IF;
53: IF ar_receipt_lib_pvt.pg_profile_cc_rate_type = FND_API.G_MISS_CHAR THEN
54: ar_receipt_lib_pvt.pg_profile_cc_rate_type
55: := ar_setup.value('AR_CROSS_CURRENCY_RATE_TYPE',null);
56: -- null should be replaced with org_id, to find profile for diffrent org
57: END IF;

Line 54: ar_receipt_lib_pvt.pg_profile_cc_rate_type

50: IF ar_receipt_lib_pvt.pg_profile_amt_applied_def = FND_API.G_MISS_CHAR THEN
51: ar_receipt_lib_pvt.pg_profile_amt_applied_def :='INV';
52: END IF;
53: IF ar_receipt_lib_pvt.pg_profile_cc_rate_type = FND_API.G_MISS_CHAR THEN
54: ar_receipt_lib_pvt.pg_profile_cc_rate_type
55: := ar_setup.value('AR_CROSS_CURRENCY_RATE_TYPE',null);
56: -- null should be replaced with org_id, to find profile for diffrent org
57: END IF;
58:

Line 59: IF ar_receipt_lib_pvt.pg_profile_dsp_inv_rate = FND_API.G_MISS_CHAR THEN

55: := ar_setup.value('AR_CROSS_CURRENCY_RATE_TYPE',null);
56: -- null should be replaced with org_id, to find profile for diffrent org
57: END IF;
58:
59: IF ar_receipt_lib_pvt.pg_profile_dsp_inv_rate = FND_API.G_MISS_CHAR THEN
60: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate
61: := fnd_profile.value('DISPLAY_INVERSE_RATE');
62: END IF;
63: IF ar_receipt_lib_pvt.pg_profile_create_bk_charges = FND_API.G_MISS_CHAR THEN

Line 60: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate

56: -- null should be replaced with org_id, to find profile for diffrent org
57: END IF;
58:
59: IF ar_receipt_lib_pvt.pg_profile_dsp_inv_rate = FND_API.G_MISS_CHAR THEN
60: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate
61: := fnd_profile.value('DISPLAY_INVERSE_RATE');
62: END IF;
63: IF ar_receipt_lib_pvt.pg_profile_create_bk_charges = FND_API.G_MISS_CHAR THEN
64: ar_receipt_lib_pvt.pg_profile_create_bk_charges

Line 63: IF ar_receipt_lib_pvt.pg_profile_create_bk_charges = FND_API.G_MISS_CHAR THEN

59: IF ar_receipt_lib_pvt.pg_profile_dsp_inv_rate = FND_API.G_MISS_CHAR THEN
60: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate
61: := fnd_profile.value('DISPLAY_INVERSE_RATE');
62: END IF;
63: IF ar_receipt_lib_pvt.pg_profile_create_bk_charges = FND_API.G_MISS_CHAR THEN
64: ar_receipt_lib_pvt.pg_profile_create_bk_charges
65: := fnd_profile.value('AR_JG_CREATE_BANK_CHARGES');
66: END IF;
67: IF ar_receipt_lib_pvt.pg_profile_def_x_rate_type = FND_API.G_MISS_CHAR THEN

Line 64: ar_receipt_lib_pvt.pg_profile_create_bk_charges

60: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate
61: := fnd_profile.value('DISPLAY_INVERSE_RATE');
62: END IF;
63: IF ar_receipt_lib_pvt.pg_profile_create_bk_charges = FND_API.G_MISS_CHAR THEN
64: ar_receipt_lib_pvt.pg_profile_create_bk_charges
65: := fnd_profile.value('AR_JG_CREATE_BANK_CHARGES');
66: END IF;
67: IF ar_receipt_lib_pvt.pg_profile_def_x_rate_type = FND_API.G_MISS_CHAR THEN
68: ar_receipt_lib_pvt.pg_profile_def_x_rate_type

Line 67: IF ar_receipt_lib_pvt.pg_profile_def_x_rate_type = FND_API.G_MISS_CHAR THEN

63: IF ar_receipt_lib_pvt.pg_profile_create_bk_charges = FND_API.G_MISS_CHAR THEN
64: ar_receipt_lib_pvt.pg_profile_create_bk_charges
65: := fnd_profile.value('AR_JG_CREATE_BANK_CHARGES');
66: END IF;
67: IF ar_receipt_lib_pvt.pg_profile_def_x_rate_type = FND_API.G_MISS_CHAR THEN
68: ar_receipt_lib_pvt.pg_profile_def_x_rate_type
69: := fnd_profile.value('AR_DEFAULT_EXCHANGE_RATE_TYPE');
70: END IF;
71: arp_util.debug('*******Profile Option Values************');

Line 68: ar_receipt_lib_pvt.pg_profile_def_x_rate_type

64: ar_receipt_lib_pvt.pg_profile_create_bk_charges
65: := fnd_profile.value('AR_JG_CREATE_BANK_CHARGES');
66: END IF;
67: IF ar_receipt_lib_pvt.pg_profile_def_x_rate_type = FND_API.G_MISS_CHAR THEN
68: ar_receipt_lib_pvt.pg_profile_def_x_rate_type
69: := fnd_profile.value('AR_DEFAULT_EXCHANGE_RATE_TYPE');
70: END IF;
71: arp_util.debug('*******Profile Option Values************');
72: arp_util.debug('pg_profile_appln_gl_date_def :'||ar_receipt_lib_pvt.pg_profile_appln_gl_date_def);

Line 72: arp_util.debug('pg_profile_appln_gl_date_def :'||ar_receipt_lib_pvt.pg_profile_appln_gl_date_def);

68: ar_receipt_lib_pvt.pg_profile_def_x_rate_type
69: := fnd_profile.value('AR_DEFAULT_EXCHANGE_RATE_TYPE');
70: END IF;
71: arp_util.debug('*******Profile Option Values************');
72: arp_util.debug('pg_profile_appln_gl_date_def :'||ar_receipt_lib_pvt.pg_profile_appln_gl_date_def);
73: arp_util.debug('pg_profile_amt_applied_def :'||ar_receipt_lib_pvt.pg_profile_amt_applied_def);
74: arp_util.debug('pg_profile_cc_rate_type :'||ar_receipt_lib_pvt.pg_profile_cc_rate_type);
75: arp_util.debug('pg_profile_doc_seq :'||ar_receipt_lib_pvt.pg_profile_doc_seq);
76: arp_util.debug('pg_profile_enable_cc :'||ar_receipt_lib_pvt.pg_profile_enable_cc);

Line 73: arp_util.debug('pg_profile_amt_applied_def :'||ar_receipt_lib_pvt.pg_profile_amt_applied_def);

69: := fnd_profile.value('AR_DEFAULT_EXCHANGE_RATE_TYPE');
70: END IF;
71: arp_util.debug('*******Profile Option Values************');
72: arp_util.debug('pg_profile_appln_gl_date_def :'||ar_receipt_lib_pvt.pg_profile_appln_gl_date_def);
73: arp_util.debug('pg_profile_amt_applied_def :'||ar_receipt_lib_pvt.pg_profile_amt_applied_def);
74: arp_util.debug('pg_profile_cc_rate_type :'||ar_receipt_lib_pvt.pg_profile_cc_rate_type);
75: arp_util.debug('pg_profile_doc_seq :'||ar_receipt_lib_pvt.pg_profile_doc_seq);
76: arp_util.debug('pg_profile_enable_cc :'||ar_receipt_lib_pvt.pg_profile_enable_cc);
77: arp_util.debug('pg_profile_dsp_inv_rate :'||ar_receipt_lib_pvt.pg_profile_dsp_inv_rate);

Line 74: arp_util.debug('pg_profile_cc_rate_type :'||ar_receipt_lib_pvt.pg_profile_cc_rate_type);

70: END IF;
71: arp_util.debug('*******Profile Option Values************');
72: arp_util.debug('pg_profile_appln_gl_date_def :'||ar_receipt_lib_pvt.pg_profile_appln_gl_date_def);
73: arp_util.debug('pg_profile_amt_applied_def :'||ar_receipt_lib_pvt.pg_profile_amt_applied_def);
74: arp_util.debug('pg_profile_cc_rate_type :'||ar_receipt_lib_pvt.pg_profile_cc_rate_type);
75: arp_util.debug('pg_profile_doc_seq :'||ar_receipt_lib_pvt.pg_profile_doc_seq);
76: arp_util.debug('pg_profile_enable_cc :'||ar_receipt_lib_pvt.pg_profile_enable_cc);
77: arp_util.debug('pg_profile_dsp_inv_rate :'||ar_receipt_lib_pvt.pg_profile_dsp_inv_rate);
78: arp_util.debug('pg_profile_create_bk_charges :'||ar_receipt_lib_pvt.pg_profile_create_bk_charges);

Line 75: arp_util.debug('pg_profile_doc_seq :'||ar_receipt_lib_pvt.pg_profile_doc_seq);

71: arp_util.debug('*******Profile Option Values************');
72: arp_util.debug('pg_profile_appln_gl_date_def :'||ar_receipt_lib_pvt.pg_profile_appln_gl_date_def);
73: arp_util.debug('pg_profile_amt_applied_def :'||ar_receipt_lib_pvt.pg_profile_amt_applied_def);
74: arp_util.debug('pg_profile_cc_rate_type :'||ar_receipt_lib_pvt.pg_profile_cc_rate_type);
75: arp_util.debug('pg_profile_doc_seq :'||ar_receipt_lib_pvt.pg_profile_doc_seq);
76: arp_util.debug('pg_profile_enable_cc :'||ar_receipt_lib_pvt.pg_profile_enable_cc);
77: arp_util.debug('pg_profile_dsp_inv_rate :'||ar_receipt_lib_pvt.pg_profile_dsp_inv_rate);
78: arp_util.debug('pg_profile_create_bk_charges :'||ar_receipt_lib_pvt.pg_profile_create_bk_charges);
79: arp_util.debug('pg_profile_def_x_rate_type :'||ar_receipt_lib_pvt.pg_profile_def_x_rate_type);

Line 76: arp_util.debug('pg_profile_enable_cc :'||ar_receipt_lib_pvt.pg_profile_enable_cc);

72: arp_util.debug('pg_profile_appln_gl_date_def :'||ar_receipt_lib_pvt.pg_profile_appln_gl_date_def);
73: arp_util.debug('pg_profile_amt_applied_def :'||ar_receipt_lib_pvt.pg_profile_amt_applied_def);
74: arp_util.debug('pg_profile_cc_rate_type :'||ar_receipt_lib_pvt.pg_profile_cc_rate_type);
75: arp_util.debug('pg_profile_doc_seq :'||ar_receipt_lib_pvt.pg_profile_doc_seq);
76: arp_util.debug('pg_profile_enable_cc :'||ar_receipt_lib_pvt.pg_profile_enable_cc);
77: arp_util.debug('pg_profile_dsp_inv_rate :'||ar_receipt_lib_pvt.pg_profile_dsp_inv_rate);
78: arp_util.debug('pg_profile_create_bk_charges :'||ar_receipt_lib_pvt.pg_profile_create_bk_charges);
79: arp_util.debug('pg_profile_def_x_rate_type :'||ar_receipt_lib_pvt.pg_profile_def_x_rate_type);
80:

Line 77: arp_util.debug('pg_profile_dsp_inv_rate :'||ar_receipt_lib_pvt.pg_profile_dsp_inv_rate);

73: arp_util.debug('pg_profile_amt_applied_def :'||ar_receipt_lib_pvt.pg_profile_amt_applied_def);
74: arp_util.debug('pg_profile_cc_rate_type :'||ar_receipt_lib_pvt.pg_profile_cc_rate_type);
75: arp_util.debug('pg_profile_doc_seq :'||ar_receipt_lib_pvt.pg_profile_doc_seq);
76: arp_util.debug('pg_profile_enable_cc :'||ar_receipt_lib_pvt.pg_profile_enable_cc);
77: arp_util.debug('pg_profile_dsp_inv_rate :'||ar_receipt_lib_pvt.pg_profile_dsp_inv_rate);
78: arp_util.debug('pg_profile_create_bk_charges :'||ar_receipt_lib_pvt.pg_profile_create_bk_charges);
79: arp_util.debug('pg_profile_def_x_rate_type :'||ar_receipt_lib_pvt.pg_profile_def_x_rate_type);
80:
81: END initialize_profile_globals;

Line 78: arp_util.debug('pg_profile_create_bk_charges :'||ar_receipt_lib_pvt.pg_profile_create_bk_charges);

74: arp_util.debug('pg_profile_cc_rate_type :'||ar_receipt_lib_pvt.pg_profile_cc_rate_type);
75: arp_util.debug('pg_profile_doc_seq :'||ar_receipt_lib_pvt.pg_profile_doc_seq);
76: arp_util.debug('pg_profile_enable_cc :'||ar_receipt_lib_pvt.pg_profile_enable_cc);
77: arp_util.debug('pg_profile_dsp_inv_rate :'||ar_receipt_lib_pvt.pg_profile_dsp_inv_rate);
78: arp_util.debug('pg_profile_create_bk_charges :'||ar_receipt_lib_pvt.pg_profile_create_bk_charges);
79: arp_util.debug('pg_profile_def_x_rate_type :'||ar_receipt_lib_pvt.pg_profile_def_x_rate_type);
80:
81: END initialize_profile_globals;
82:

Line 79: arp_util.debug('pg_profile_def_x_rate_type :'||ar_receipt_lib_pvt.pg_profile_def_x_rate_type);

75: arp_util.debug('pg_profile_doc_seq :'||ar_receipt_lib_pvt.pg_profile_doc_seq);
76: arp_util.debug('pg_profile_enable_cc :'||ar_receipt_lib_pvt.pg_profile_enable_cc);
77: arp_util.debug('pg_profile_dsp_inv_rate :'||ar_receipt_lib_pvt.pg_profile_dsp_inv_rate);
78: arp_util.debug('pg_profile_create_bk_charges :'||ar_receipt_lib_pvt.pg_profile_create_bk_charges);
79: arp_util.debug('pg_profile_def_x_rate_type :'||ar_receipt_lib_pvt.pg_profile_def_x_rate_type);
80:
81: END initialize_profile_globals;
82:
83:

Line 336: ar_receipt_lib_pvt.Default_cash_ids(

332: --If any value to id conversion fails then error status is returned
333: -- bichatte removed customer bank variables payment uptake project (Reverted)
334: -- we dont need to default the payment_trxn_extension_id
335:
336: ar_receipt_lib_pvt.Default_cash_ids(
337: p_usr_currency_code ,
338: p_usr_exchange_rate_type,
339: p_customer_name,
340: p_customer_number,

Line 367: ar_receipt_lib_pvt.Derive_cust_info_from_trx(

363: IF l_customer_id IS NULL AND
364: l_def_cash_id_return_status = FND_API.G_RET_STS_SUCCESS AND
365: l_currency_code IS NOT NULL
366: THEN
367: ar_receipt_lib_pvt.Derive_cust_info_from_trx(
368: p_customer_trx_id,
369: p_trx_number,
370: p_installment,
371: p_applied_payment_schedule_id,

Line 382: ar_receipt_lib_pvt.Get_cash_defaults(

378: END IF;
379: IF PG_DEBUG in ('Y', 'C') THEN
380: arp_util.debug('Create_cash_1: ' || 'Default_cash_ids return status :'||l_derive_cust_return_status);
381: END IF;
382: ar_receipt_lib_pvt.Get_cash_defaults(
383: l_currency_code,
384: l_exchange_rate_type,
385: l_exchange_rate,
386: l_exchange_rate_date,

Line 410: l_legal_entity_id := ar_receipt_lib_pvt.get_legal_entity(l_remit_bank_acct_use_id);

406:
407: /*------------------------------------------+
408: | Get legal_entity_id |
409: +------------------------------------------*/ /* R12 LE uptake */
410: l_legal_entity_id := ar_receipt_lib_pvt.get_legal_entity(l_remit_bank_acct_use_id);
411:
412: /*------------------------------------------+
413: | Validate the receipt information. |
414: | Do not continue if there are errors. |

Line 457: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

453: l_receipt_method_id = -1 THEN
454: NULL;
455: ELSE
456: --validate and default the flexfields
457: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
458: l_attribute_rec,
459: 'AR_CASH_RECEIPTS',
460: l_dflex_val_return_status
461: );

Line 523: ar_receipt_lib_pvt.get_doc_seq(222,

519: --Call the document sequence routine only there have been no errors
520: --reported so far.
521: IF x_return_status = FND_API.G_RET_STS_SUCCESS THEN
522:
523: ar_receipt_lib_pvt.get_doc_seq(222,
524: l_receipt_method_name,
525: arp_global.set_of_books_id,
526: l_creation_method,
527: l_receipt_date,

Line 1368: ar_receipt_lib_pvt.Default_appln_ids(

1364: |ID TO VALUE CONVERSION |
1365: | |
1366: +-----------------------*/
1367:
1368: ar_receipt_lib_pvt.Default_appln_ids(
1369: l_cash_receipt_id,
1370: p_receipt_number,
1371: l_customer_trx_id,
1372: p_trx_number,

Line 1393: ar_receipt_lib_pvt.Default_application_info(

1389: +---------------------*/
1390: IF PG_DEBUG in ('Y', 'C') THEN
1391: arp_util.debug('Apply: ' || 'l_amount_applied_from :'||to_char(l_amount_applied_from));
1392: END IF;
1393: ar_receipt_lib_pvt.Default_application_info(
1394: l_cash_receipt_id ,
1395: l_cr_gl_date,
1396: l_cr_date,
1397: l_cr_amount,

Line 1544: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

1540:
1541: /* Bug 9501452 Bypass DFF validation in case call is for AP/AR Netting*/
1542: IF nvl(l_receipt_method_id,-99) <> -1 THEN
1543: --validate and default the flexfields
1544: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
1545: l_attribute_rec,
1546: 'AR_RECEIVABLE_APPLICATIONS',
1547: l_dflex_val_return_status
1548: );

Line 2209: ar_receipt_lib_pvt.populate_llca_gt(

2205: l_tax_discount := p_tax_discount;
2206: l_freight_discount := p_freight_discount;
2207: l_ad_dflex_val_return_status := FND_API.G_RET_STS_SUCCESS;
2208:
2209: ar_receipt_lib_pvt.populate_llca_gt(
2210: p_customer_trx_id => l_customer_trx_id,
2211: p_llca_type => l_llca_type,
2212: p_llca_trx_lines_tbl => p_llca_trx_lines_tbl,
2213: p_line_amount => l_line_amount,

Line 2244: ar_receipt_lib_pvt.Default_appln_ids(

2240: | |
2241: |ID TO VALUE CONVERSION |
2242: | |
2243: +-----------------------*/
2244: ar_receipt_lib_pvt.Default_appln_ids(
2245: p_cash_receipt_id => l_cash_receipt_id,
2246: p_receipt_number => p_receipt_number,
2247: p_customer_trx_id => l_customer_trx_id,
2248: p_trx_number => p_trx_number,

Line 2285: ar_receipt_lib_pvt.Default_application_info(

2281: +---------------------*/
2282: IF PG_DEBUG in ('Y', 'C') THEN
2283: arp_util.debug('Apply_In_Detail: ' || 'l_amount_applied_from :'||to_char(l_amount_applied_from));
2284: END IF;
2285: ar_receipt_lib_pvt.Default_application_info(
2286: p_cash_receipt_id => l_cash_receipt_id ,
2287: p_cr_gl_date => l_cr_gl_date,
2288: p_cr_date => l_cr_date,
2289: p_cr_amount => l_cr_amount,

Line 2411: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

2407: /* Bug 9501452 Bypass DFF validation in case call is for AP/AR Netting*/
2408: IF nvl(l_receipt_method_id,-99) <> -1 THEN
2409:
2410: --validate and default the flexfields
2411: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
2412: l_attribute_rec,
2413: 'AR_RECEIVABLE_APPLICATIONS',
2414: l_dflex_val_return_status
2415: );

Line 2434: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

2430: --bug7311231
2431: --validate and default the flexfields
2432: IF l_llca_type = 'S' OR l_llca_type = 'G'
2433: OR (l_llca_type = 'L' AND p_llca_trx_lines_tbl.COUNT = 0) THEN
2434: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
2435: l_line_attribute_rec,
2436: 'AR_ACTIVITY_DETAILS',
2437: l_ad_dflex_val_return_status
2438: );

Line 3037: ar_receipt_lib_pvt.Derive_unapp_ids(

3033:
3034: --Derive the id's for the entered values and if both the
3035: --values and the id's superceed the values
3036:
3037: ar_receipt_lib_pvt.Derive_unapp_ids(
3038: p_trx_number ,
3039: l_customer_trx_id ,
3040: p_installment ,
3041: l_applied_payment_schedule_id ,

Line 3050: ar_receipt_lib_pvt.Default_unapp_info(

3046: l_apply_gl_date,
3047: l_derive_ids_ret_status
3048: );
3049: /*Added parameter l_cr_unapp_amount for bug 3119391 */
3050: ar_receipt_lib_pvt.Default_unapp_info(
3051: l_receivable_application_id,
3052: l_apply_gl_date,
3053: l_cash_receipt_id,
3054: l_reversal_gl_date,

Line 5724: ar_receipt_lib_pvt.Derive_reverse_ids(

5720: |ID TO VALUE CONVERSION |
5721: | |
5722: +-----------------------*/
5723:
5724: ar_receipt_lib_pvt.Derive_reverse_ids(
5725: p_receipt_number,
5726: l_cash_receipt_id,
5727: p_reversal_category_name,
5728: l_reversal_category_code,

Line 5743: ar_receipt_lib_pvt.default_reverse_info(

5739: | |
5740: +---------------------*/
5741:
5742:
5743: ar_receipt_lib_pvt.default_reverse_info(
5744: l_cash_receipt_id,
5745: l_reversal_gl_date ,
5746: l_reversal_date ,
5747: l_receipt_state,

Line 5852: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

5848: IF l_receipt_method_id = -1 THEN
5849: NULL;
5850: ELSE
5851: --validate and default the flexfields
5852: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
5853: l_attribute_rec,
5854: 'AR_CASH_RECEIPTS',
5855: l_dflex_val_return_status
5856: );

Line 5866: ar_receipt_lib_pvt.Default_Desc_Flexfield(

5862: /* Bug fix 3539008 */
5863: /* If the descriptive flex field is not passed in or can not be defaulted,
5864: default it from the cash receipt */
5865: IF l_attribute_rec.attribute_category IS NULL THEN
5866: ar_receipt_lib_pvt.Default_Desc_Flexfield(
5867: l_attribute_rec,
5868: p_cash_receipt_id,
5869: l_dflex_def_return_status
5870: );

Line 5872: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

5868: p_cash_receipt_id,
5869: l_dflex_def_return_status
5870: );
5871: IF l_attribute_rec.attribute_category IS NOT NULL THEN
5872: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
5873: l_attribute_rec,
5874: 'AR_CASH_RECEIPTS',
5875: l_dflex_val1_return_status
5876: );

Line 6350: ar_receipt_lib_pvt.Default_cash_receipt_id(

6346: |ID TO VALUE CONVERSION |
6347: | |
6348: +-----------------------*/
6349:
6350: ar_receipt_lib_pvt.Default_cash_receipt_id(
6351: l_cash_receipt_id ,
6352: p_receipt_number ,
6353: l_id_conv_return_status
6354: );

Line 6365: ar_receipt_lib_pvt.Default_on_ac_app_info(

6361: | DEFAULTING |
6362: | |
6363: +---------------------*/
6364:
6365: ar_receipt_lib_pvt.Default_on_ac_app_info(
6366: l_cash_receipt_id,
6367: l_cr_gl_date,
6368: l_cr_unapp_amount,
6369: l_cr_date,

Line 6377: arp_util.debug('after ar_receipt_lib_pvt.default_on_ac_app_info');

6373: l_apply_date,
6374: l_cr_currency_code,
6375: l_default_return_status
6376: );
6377: arp_util.debug('after ar_receipt_lib_pvt.default_on_ac_app_info');
6378: /*---------------------+
6379: | |
6380: | VALIDATION |
6381: | |

Line 6397: arp_util.debug('after ar_receipt_lib_pvt.validate_on_ac_info');

6393: l_validation_return_status,
6394: NULL,
6395: p_called_from
6396: );
6397: arp_util.debug('after ar_receipt_lib_pvt.validate_on_ac_info');
6398:
6399: IF PG_DEBUG in ('Y', 'C') THEN
6400: arp_util.debug('Apply: ' || 'Validation return status :'||l_validation_return_status);
6401: END IF;

Line 6404: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

6400: arp_util.debug('Apply: ' || 'Validation return status :'||l_validation_return_status);
6401: END IF;
6402:
6403: --validate and default the flexfields
6404: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
6405: l_attribute_rec,
6406: 'AR_RECEIVABLE_APPLICATIONS',
6407: l_dflex_val_return_status
6408: );

Line 6752: ar_receipt_lib_pvt.derive_unapp_on_ac_ids(

6748: | If both the values and the ids are specified, |
6749: | the id's superceed the values |
6750: +------------------------------------------------*/
6751:
6752: ar_receipt_lib_pvt.derive_unapp_on_ac_ids(
6753: p_receipt_number ,
6754: l_cash_receipt_id ,
6755: l_receivable_application_id ,
6756: l_apply_gl_date ,

Line 6759: ar_receipt_lib_pvt.default_unapp_on_ac_act_info(

6755: l_receivable_application_id ,
6756: l_apply_gl_date ,
6757: l_def_return_status
6758: );
6759: ar_receipt_lib_pvt.default_unapp_on_ac_act_info(
6760: l_receivable_application_id ,
6761: l_apply_gl_date ,
6762: l_cash_receipt_id ,
6763: l_reversal_gl_date ,

Line 7080: ar_receipt_lib_pvt.derive_otheraccount_ids(

7076: | If both the values and the ids are specified, |
7077: | the id's superceed the values |
7078: +------------------------------------------------*/
7079:
7080: ar_receipt_lib_pvt.derive_otheraccount_ids(
7081: p_receipt_number => p_receipt_number ,
7082: p_cash_receipt_id => l_cash_receipt_id ,
7083: p_applied_ps_id => l_applied_ps_id,
7084: p_receivable_application_id => l_receivable_application_id ,

Line 7090: ar_receipt_lib_pvt.default_unapp_on_ac_act_info(

7086: p_cr_unapp_amt => l_cr_unapp_amt, /* bug fix 3569640 */
7087: p_return_status => l_def_return_status
7088: );
7089:
7090: ar_receipt_lib_pvt.default_unapp_on_ac_act_info(
7091: p_receivable_application_id => l_receivable_application_id ,
7092: p_apply_gl_date => l_apply_gl_date ,
7093: p_cash_receipt_id => l_cash_receipt_id ,
7094: p_reversal_gl_date => l_reversal_gl_date ,

Line 7553: ar_receipt_lib_pvt.Default_cash_receipt_id(

7549: |ID TO VALUE CONVERSION |
7550: | |
7551: +-----------------------*/
7552:
7553: ar_receipt_lib_pvt.Default_cash_receipt_id(
7554: l_cash_receipt_id ,
7555: p_receipt_number ,
7556: l_id_conv_return_status
7557: );

Line 7569: ar_receipt_lib_pvt.Default_on_ac_app_info(

7565: | DEFAULTING |
7566: | |
7567: +---------------------*/
7568:
7569: ar_receipt_lib_pvt.Default_on_ac_app_info(
7570: l_cash_receipt_id,
7571: l_cr_gl_date,
7572: l_cr_unapp_amount,
7573: l_cr_date,

Line 7584: ar_receipt_lib_pvt.default_refund_attributes(

7580: );
7581:
7582: IF p_applied_payment_schedule_id = -8 THEN
7583: /* Default the refund attributes from IBY */
7584: ar_receipt_lib_pvt.default_refund_attributes(
7585: p_cash_receipt_id => l_cash_receipt_id
7586: ,p_customer_trx_id => null
7587: ,p_currency_code => l_cr_currency_code
7588: ,p_amount => l_amount_applied

Line 8136: ar_receipt_lib_pvt.derive_activity_unapp_ids(

8132: | If both the values and the ids are specified, |
8133: | the id's superceed the values |
8134: +------------------------------------------------*/
8135:
8136: ar_receipt_lib_pvt.derive_activity_unapp_ids(
8137: p_receipt_number ,
8138: l_cash_receipt_id ,
8139: l_receivable_application_id ,
8140: p_called_from,

Line 8145: ar_receipt_lib_pvt.default_unapp_on_ac_act_info(

8141: l_apply_gl_date ,
8142: l_cr_unapp_amt, /* Bug fix 3569640 */
8143: l_def_return_status
8144: );
8145: ar_receipt_lib_pvt.default_unapp_on_ac_act_info(
8146: l_receivable_application_id ,
8147: l_apply_gl_date ,
8148: l_cash_receipt_id ,
8149: l_reversal_gl_date ,

Line 8498: ar_receipt_lib_pvt.Default_cash_receipt_id(

8494: |ID TO VALUE CONVERSION |
8495: | |
8496: +-----------------------*/
8497:
8498: ar_receipt_lib_pvt.Default_cash_receipt_id(
8499: l_cash_receipt_id ,
8500: p_receipt_number ,
8501: l_id_conv_return_status
8502: );

Line 8511: ar_receipt_lib_pvt.Default_on_ac_app_info(

8507: | DEFAULTING |
8508: | |
8509: +---------------------*/
8510:
8511: ar_receipt_lib_pvt.Default_on_ac_app_info(
8512: l_cash_receipt_id,
8513: l_cr_gl_date,
8514: l_cr_unapp_amount,
8515: l_cr_date,

Line 8571: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

8567: arp_util.debug('Application ref Validation return status :'||l_app_validation_return_status);
8568:
8569:
8570: --validate and default the flexfields
8571: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
8572: l_attribute_rec,
8573: 'AR_RECEIVABLE_APPLICATIONS',
8574: l_dflex_val_return_status
8575: );

Line 9045: ar_receipt_lib_pvt.Default_misc_ids(

9041: /*-------------------------------+
9042: | Defaulting Ids from Values |
9043: +-------------------------------*/
9044:
9045: ar_receipt_lib_pvt.Default_misc_ids(
9046: p_usr_currency_code ,
9047: p_usr_exchange_rate_type,
9048: p_activity,
9049: p_reference_type,

Line 9071: ar_receipt_lib_pvt.Get_misc_defaults(

9067: /*-------------------------------+
9068: | Defaulting |
9069: +-------------------------------*/
9070:
9071: ar_receipt_lib_pvt.Get_misc_defaults(
9072: l_currency_code,
9073: l_exchange_rate_type,
9074: l_exchange_rate,
9075: l_exchange_date,

Line 9096: l_legal_entity_id := ar_receipt_lib_pvt.get_legal_entity(l_remit_bank_acct_use_id);

9092:
9093: /*------------------------------------------+
9094: | Get legal_entity_id |
9095: +------------------------------------------*/ /* R12 LE uptake */
9096: l_legal_entity_id := ar_receipt_lib_pvt.get_legal_entity(l_remit_bank_acct_use_id);
9097:
9098: /*-------------------------------+
9099: | Validation |
9100: +-------------------------------*/

Line 9138: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

9134:
9135: --Bug 4166986 CC_chargeback project
9136: IF NVL(p_called_from ,'X') NOT IN
9137: ('CC_REFUND','CM_REFUND','CC_CHARGEBACK') THEN
9138: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
9139: l_attribute_rec,
9140: 'AR_CASH_RECEIPTS',
9141: l_dflex_val_return_status
9142: );

Line 9179: ar_receipt_lib_pvt.get_doc_seq(

9175: arp_util.debug('create_misc: x_return_status = ' || x_return_status );
9176: END IF;
9177: IF x_return_status = FND_API.G_RET_STS_SUCCESS THEN
9178:
9179: ar_receipt_lib_pvt.get_doc_seq(
9180: 222,
9181: l_receipt_method_name,
9182: arp_global.set_of_books_id,
9183: l_creation_method,

Line 9645: ar_receipt_lib_pvt.pg_profile_doc_seq := p_profile_doc_seq;

9641: p_profile_def_x_rate_type VARCHAR2,
9642: p_pay_unrelated_inv_flag VARCHAR2,
9643: p_unearned_discount VARCHAR2) IS
9644: BEGIN
9645: ar_receipt_lib_pvt.pg_profile_doc_seq := p_profile_doc_seq;
9646: ar_receipt_lib_pvt.pg_profile_enable_cc := p_profile_enable_cc;
9647: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := p_profile_appln_gl_date_def;
9648: ar_receipt_lib_pvt.pg_profile_amt_applied_def := p_profile_amt_applied_def;
9649: ar_receipt_lib_pvt.pg_profile_cc_rate_type := p_profile_cc_rate_type;

Line 9646: ar_receipt_lib_pvt.pg_profile_enable_cc := p_profile_enable_cc;

9642: p_pay_unrelated_inv_flag VARCHAR2,
9643: p_unearned_discount VARCHAR2) IS
9644: BEGIN
9645: ar_receipt_lib_pvt.pg_profile_doc_seq := p_profile_doc_seq;
9646: ar_receipt_lib_pvt.pg_profile_enable_cc := p_profile_enable_cc;
9647: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := p_profile_appln_gl_date_def;
9648: ar_receipt_lib_pvt.pg_profile_amt_applied_def := p_profile_amt_applied_def;
9649: ar_receipt_lib_pvt.pg_profile_cc_rate_type := p_profile_cc_rate_type;
9650: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := p_profile_dsp_inv_rate;

Line 9647: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := p_profile_appln_gl_date_def;

9643: p_unearned_discount VARCHAR2) IS
9644: BEGIN
9645: ar_receipt_lib_pvt.pg_profile_doc_seq := p_profile_doc_seq;
9646: ar_receipt_lib_pvt.pg_profile_enable_cc := p_profile_enable_cc;
9647: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := p_profile_appln_gl_date_def;
9648: ar_receipt_lib_pvt.pg_profile_amt_applied_def := p_profile_amt_applied_def;
9649: ar_receipt_lib_pvt.pg_profile_cc_rate_type := p_profile_cc_rate_type;
9650: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := p_profile_dsp_inv_rate;
9651: ar_receipt_lib_pvt.pg_profile_create_bk_charges := p_profile_create_bk_charges;

Line 9648: ar_receipt_lib_pvt.pg_profile_amt_applied_def := p_profile_amt_applied_def;

9644: BEGIN
9645: ar_receipt_lib_pvt.pg_profile_doc_seq := p_profile_doc_seq;
9646: ar_receipt_lib_pvt.pg_profile_enable_cc := p_profile_enable_cc;
9647: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := p_profile_appln_gl_date_def;
9648: ar_receipt_lib_pvt.pg_profile_amt_applied_def := p_profile_amt_applied_def;
9649: ar_receipt_lib_pvt.pg_profile_cc_rate_type := p_profile_cc_rate_type;
9650: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := p_profile_dsp_inv_rate;
9651: ar_receipt_lib_pvt.pg_profile_create_bk_charges := p_profile_create_bk_charges;
9652: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := p_profile_def_x_rate_type;

Line 9649: ar_receipt_lib_pvt.pg_profile_cc_rate_type := p_profile_cc_rate_type;

9645: ar_receipt_lib_pvt.pg_profile_doc_seq := p_profile_doc_seq;
9646: ar_receipt_lib_pvt.pg_profile_enable_cc := p_profile_enable_cc;
9647: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := p_profile_appln_gl_date_def;
9648: ar_receipt_lib_pvt.pg_profile_amt_applied_def := p_profile_amt_applied_def;
9649: ar_receipt_lib_pvt.pg_profile_cc_rate_type := p_profile_cc_rate_type;
9650: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := p_profile_dsp_inv_rate;
9651: ar_receipt_lib_pvt.pg_profile_create_bk_charges := p_profile_create_bk_charges;
9652: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := p_profile_def_x_rate_type;
9653: arp_global.sysparam.pay_unrelated_invoices_flag := p_pay_unrelated_inv_flag;

Line 9650: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := p_profile_dsp_inv_rate;

9646: ar_receipt_lib_pvt.pg_profile_enable_cc := p_profile_enable_cc;
9647: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := p_profile_appln_gl_date_def;
9648: ar_receipt_lib_pvt.pg_profile_amt_applied_def := p_profile_amt_applied_def;
9649: ar_receipt_lib_pvt.pg_profile_cc_rate_type := p_profile_cc_rate_type;
9650: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := p_profile_dsp_inv_rate;
9651: ar_receipt_lib_pvt.pg_profile_create_bk_charges := p_profile_create_bk_charges;
9652: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := p_profile_def_x_rate_type;
9653: arp_global.sysparam.pay_unrelated_invoices_flag := p_pay_unrelated_inv_flag;
9654: arp_global.sysparam.unearned_discount := p_unearned_discount;

Line 9651: ar_receipt_lib_pvt.pg_profile_create_bk_charges := p_profile_create_bk_charges;

9647: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := p_profile_appln_gl_date_def;
9648: ar_receipt_lib_pvt.pg_profile_amt_applied_def := p_profile_amt_applied_def;
9649: ar_receipt_lib_pvt.pg_profile_cc_rate_type := p_profile_cc_rate_type;
9650: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := p_profile_dsp_inv_rate;
9651: ar_receipt_lib_pvt.pg_profile_create_bk_charges := p_profile_create_bk_charges;
9652: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := p_profile_def_x_rate_type;
9653: arp_global.sysparam.pay_unrelated_invoices_flag := p_pay_unrelated_inv_flag;
9654: arp_global.sysparam.unearned_discount := p_unearned_discount;
9655:

Line 9652: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := p_profile_def_x_rate_type;

9648: ar_receipt_lib_pvt.pg_profile_amt_applied_def := p_profile_amt_applied_def;
9649: ar_receipt_lib_pvt.pg_profile_cc_rate_type := p_profile_cc_rate_type;
9650: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := p_profile_dsp_inv_rate;
9651: ar_receipt_lib_pvt.pg_profile_create_bk_charges := p_profile_create_bk_charges;
9652: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := p_profile_def_x_rate_type;
9653: arp_global.sysparam.pay_unrelated_invoices_flag := p_pay_unrelated_inv_flag;
9654: arp_global.sysparam.unearned_discount := p_unearned_discount;
9655:
9656:

Line 9835: ar_receipt_lib_pvt.default_open_receipt(

9831: | DEFAULTING |
9832: | |
9833: +---------------------*/
9834:
9835: ar_receipt_lib_pvt.default_open_receipt(
9836: l_cash_receipt_id,
9837: l_receipt_number,
9838: l_applied_payment_schedule_id,
9839: l_open_cash_receipt_id,

Line 9901: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

9897: END IF;
9898: END IF;
9899:
9900: --validate and default the flexfields
9901: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
9902: l_attribute_rec,
9903: 'AR_RECEIVABLE_APPLICATIONS',
9904: l_dflex_val_return_status
9905: );

Line 10399: ar_receipt_lib_pvt.default_unapp_open_receipt(

10395: | DEFAULTING |
10396: | |
10397: +---------------------*/
10398:
10399: ar_receipt_lib_pvt.default_unapp_open_receipt(
10400: p_receivable_application_id => l_receivable_application_id
10401: , x_applied_cash_receipt_id => l_applied_cash_receipt_id
10402: , x_applied_rec_app_id => l_applied_rec_app_id
10403: , x_amount_applied => l_amount_applied

Line 12210: ar_receipt_lib_pvt.pg_profile_doc_seq := FND_API.G_MISS_CHAR;

12206: END Change_customer;
12207:
12208: BEGIN
12209: arp_util.debug('initialization section of ar_receipt_api_pub');
12210: ar_receipt_lib_pvt.pg_profile_doc_seq := FND_API.G_MISS_CHAR;
12211: ar_receipt_lib_pvt.pg_profile_enable_cc := FND_API.G_MISS_CHAR;
12212: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := FND_API.G_MISS_CHAR;
12213: ar_receipt_lib_pvt.pg_profile_amt_applied_def := FND_API.G_MISS_CHAR;
12214: ar_receipt_lib_pvt.pg_profile_cc_rate_type := FND_API.G_MISS_CHAR;

Line 12211: ar_receipt_lib_pvt.pg_profile_enable_cc := FND_API.G_MISS_CHAR;

12207:
12208: BEGIN
12209: arp_util.debug('initialization section of ar_receipt_api_pub');
12210: ar_receipt_lib_pvt.pg_profile_doc_seq := FND_API.G_MISS_CHAR;
12211: ar_receipt_lib_pvt.pg_profile_enable_cc := FND_API.G_MISS_CHAR;
12212: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := FND_API.G_MISS_CHAR;
12213: ar_receipt_lib_pvt.pg_profile_amt_applied_def := FND_API.G_MISS_CHAR;
12214: ar_receipt_lib_pvt.pg_profile_cc_rate_type := FND_API.G_MISS_CHAR;
12215: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := FND_API.G_MISS_CHAR;

Line 12212: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := FND_API.G_MISS_CHAR;

12208: BEGIN
12209: arp_util.debug('initialization section of ar_receipt_api_pub');
12210: ar_receipt_lib_pvt.pg_profile_doc_seq := FND_API.G_MISS_CHAR;
12211: ar_receipt_lib_pvt.pg_profile_enable_cc := FND_API.G_MISS_CHAR;
12212: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := FND_API.G_MISS_CHAR;
12213: ar_receipt_lib_pvt.pg_profile_amt_applied_def := FND_API.G_MISS_CHAR;
12214: ar_receipt_lib_pvt.pg_profile_cc_rate_type := FND_API.G_MISS_CHAR;
12215: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := FND_API.G_MISS_CHAR;
12216: ar_receipt_lib_pvt.pg_profile_create_bk_charges := FND_API.G_MISS_CHAR;

Line 12213: ar_receipt_lib_pvt.pg_profile_amt_applied_def := FND_API.G_MISS_CHAR;

12209: arp_util.debug('initialization section of ar_receipt_api_pub');
12210: ar_receipt_lib_pvt.pg_profile_doc_seq := FND_API.G_MISS_CHAR;
12211: ar_receipt_lib_pvt.pg_profile_enable_cc := FND_API.G_MISS_CHAR;
12212: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := FND_API.G_MISS_CHAR;
12213: ar_receipt_lib_pvt.pg_profile_amt_applied_def := FND_API.G_MISS_CHAR;
12214: ar_receipt_lib_pvt.pg_profile_cc_rate_type := FND_API.G_MISS_CHAR;
12215: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := FND_API.G_MISS_CHAR;
12216: ar_receipt_lib_pvt.pg_profile_create_bk_charges := FND_API.G_MISS_CHAR;
12217: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := FND_API.G_MISS_CHAR;

Line 12214: ar_receipt_lib_pvt.pg_profile_cc_rate_type := FND_API.G_MISS_CHAR;

12210: ar_receipt_lib_pvt.pg_profile_doc_seq := FND_API.G_MISS_CHAR;
12211: ar_receipt_lib_pvt.pg_profile_enable_cc := FND_API.G_MISS_CHAR;
12212: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := FND_API.G_MISS_CHAR;
12213: ar_receipt_lib_pvt.pg_profile_amt_applied_def := FND_API.G_MISS_CHAR;
12214: ar_receipt_lib_pvt.pg_profile_cc_rate_type := FND_API.G_MISS_CHAR;
12215: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := FND_API.G_MISS_CHAR;
12216: ar_receipt_lib_pvt.pg_profile_create_bk_charges := FND_API.G_MISS_CHAR;
12217: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := FND_API.G_MISS_CHAR;
12218:

Line 12215: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := FND_API.G_MISS_CHAR;

12211: ar_receipt_lib_pvt.pg_profile_enable_cc := FND_API.G_MISS_CHAR;
12212: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := FND_API.G_MISS_CHAR;
12213: ar_receipt_lib_pvt.pg_profile_amt_applied_def := FND_API.G_MISS_CHAR;
12214: ar_receipt_lib_pvt.pg_profile_cc_rate_type := FND_API.G_MISS_CHAR;
12215: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := FND_API.G_MISS_CHAR;
12216: ar_receipt_lib_pvt.pg_profile_create_bk_charges := FND_API.G_MISS_CHAR;
12217: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := FND_API.G_MISS_CHAR;
12218:
12219: END AR_RECEIPT_API_PUB;

Line 12216: ar_receipt_lib_pvt.pg_profile_create_bk_charges := FND_API.G_MISS_CHAR;

12212: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := FND_API.G_MISS_CHAR;
12213: ar_receipt_lib_pvt.pg_profile_amt_applied_def := FND_API.G_MISS_CHAR;
12214: ar_receipt_lib_pvt.pg_profile_cc_rate_type := FND_API.G_MISS_CHAR;
12215: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := FND_API.G_MISS_CHAR;
12216: ar_receipt_lib_pvt.pg_profile_create_bk_charges := FND_API.G_MISS_CHAR;
12217: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := FND_API.G_MISS_CHAR;
12218:
12219: END AR_RECEIPT_API_PUB;

Line 12217: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := FND_API.G_MISS_CHAR;

12213: ar_receipt_lib_pvt.pg_profile_amt_applied_def := FND_API.G_MISS_CHAR;
12214: ar_receipt_lib_pvt.pg_profile_cc_rate_type := FND_API.G_MISS_CHAR;
12215: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := FND_API.G_MISS_CHAR;
12216: ar_receipt_lib_pvt.pg_profile_create_bk_charges := FND_API.G_MISS_CHAR;
12217: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := FND_API.G_MISS_CHAR;
12218:
12219: END AR_RECEIPT_API_PUB;